From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53128) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeKXl-0006Sw-UQ for qemu-devel@nongnu.org; Wed, 15 Oct 2014 05:07:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XeKXg-00072q-47 for qemu-devel@nongnu.org; Wed, 15 Oct 2014 05:06:53 -0400 Received: from mx1.redhat.com ([209.132.183.28]:13857) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XeKXf-00072Q-U3 for qemu-devel@nongnu.org; Wed, 15 Oct 2014 05:06:48 -0400 From: Gerd Hoffmann Date: Wed, 15 Oct 2014 11:05:48 +0200 Message-Id: <1413363967-2489-16-git-send-email-kraxel@redhat.com> In-Reply-To: <1413363967-2489-1-git-send-email-kraxel@redhat.com> References: <1413363967-2489-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 15/34] vmxnet3: add bootindex to qom property List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Dmitry Fleytman , Gonglei , Gerd Hoffmann From: Gonglei 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 Reviewed-by: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- hw/net/vmxnet3.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hw/net/vmxnet3.c b/hw/net/vmxnet3.c index f246fa1..88e9d9c 100644 --- a/hw/net/vmxnet3.c +++ b/hw/net/vmxnet3.c @@ -2177,6 +2177,13 @@ static int vmxnet3_pci_init(PCIDevice *pci_dev) return 0; } +static void vmxnet3_instance_init(Object *obj) +{ + VMXNET3State *s = VMXNET3(obj); + device_add_bootindex_property(obj, &s->conf.bootindex, + "bootindex", "/ethernet-phy@0", + DEVICE(obj), NULL); +} static void vmxnet3_pci_uninit(PCIDevice *pci_dev) { @@ -2524,6 +2531,7 @@ static const TypeInfo vmxnet3_info = { .parent = TYPE_PCI_DEVICE, .instance_size = sizeof(VMXNET3State), .class_init = vmxnet3_class_init, + .instance_init = vmxnet3_instance_init, }; static void vmxnet3_register_types(void) -- 1.8.3.1