[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v6 11/27] ne2000: add bootindex to qom property
From: |
arei.gonglei |
Subject: |
[Qemu-devel] [PATCH v6 11/27] ne2000: add bootindex to qom property |
Date: |
Sat, 30 Aug 2014 18:00:11 +0800 |
From: Gonglei <address@hidden>
Add a qom property with the same name 'bootindex',
when we remove it form qdev property, things will
continue to work just fine, and we can use qom features
which are not supported by qdev property.
Signed-off-by: Gonglei <address@hidden>
---
hw/net/ne2000.c | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/hw/net/ne2000.c b/hw/net/ne2000.c
index a6fc3c0..3ddb494 100644
--- a/hw/net/ne2000.c
+++ b/hw/net/ne2000.c
@@ -758,6 +758,31 @@ static void pci_ne2000_exit(PCIDevice *pci_dev)
qemu_free_irq(s->irq);
}
+static void ne2000_get_bootindex(Object *obj, Visitor *v, void *opaque,
+ const char *name, Error **errp)
+{
+ PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, PCI_DEVICE(obj));
+ NE2000State *s = &d->ne2000;
+
+ get_bootindex(&s->c.bootindex, v, name, errp);
+}
+
+static void ne2000_set_bootindex(Object *obj, Visitor *v, void *opaque,
+ const char *name, Error **errp)
+{
+ PCINE2000State *d = DO_UPCAST(PCINE2000State, dev, PCI_DEVICE(obj));
+ NE2000State *s = &d->ne2000;
+
+ set_bootindex(&s->c.bootindex, v, name, errp);
+}
+
+static void ne2000_instance_init(Object *obj)
+{
+ object_property_add(obj, "bootindex", "int",
+ ne2000_get_bootindex,
+ ne2000_set_bootindex, NULL, NULL, NULL);
+}
+
static Property ne2000_properties[] = {
DEFINE_NIC_PROPERTIES(PCINE2000State, ne2000.c),
DEFINE_PROP_END_OF_LIST(),
@@ -785,6 +810,7 @@ static const TypeInfo ne2000_info = {
.parent = TYPE_PCI_DEVICE,
.instance_size = sizeof(PCINE2000State),
.class_init = ne2000_class_init,
+ .instance_init = ne2000_instance_init,
};
static void ne2000_register_types(void)
--
1.7.12.4
- [Qemu-devel] [PATCH v6 07/27] vl.c: add setter/getter functions for bootindex property, (continued)
- [Qemu-devel] [PATCH v6 07/27] vl.c: add setter/getter functions for bootindex property, arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 19/27] pci-assign: remove bootindex property from qdev to qom, arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 18/27] host-libusb: remove bootindex property from qdev to qom, arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 27/27] bootindex: delete bootindex when device is removed, arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 14/27] spapr_lian: add bootindex to qom property, arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 03/27] fw_cfg: add fw_cfg_machine_reset function, arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 12/27] pcnet: add bootindex to qom property, arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 22/27] isa-fdc: remove bootindexA/B property from qdev to qom, arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 16/27] usb-net: add bootindex to qom property, arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 15/27] vmxnet3: add bootindex to qom property, arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 11/27] ne2000: add bootindex to qom property,
arei.gonglei <=
- [Qemu-devel] [PATCH v6 06/27] bootindex: move setting bootindex on reset() instead of realize/init(), arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 02/27] bootindex: add del_boot_device_path function, arei.gonglei, 2014/08/30
- [Qemu-devel] [PATCH v6 13/27] rtl8139: add bootindex to qom property, arei.gonglei, 2014/08/30