From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54532) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aAtN7-0005oO-N4 for qemu-devel@nongnu.org; Mon, 21 Dec 2015 00:51:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aAtN4-0006gt-GT for qemu-devel@nongnu.org; Mon, 21 Dec 2015 00:51:01 -0500 Received: from [59.151.112.132] (port=29849 helo=heian.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aAtN4-0006gh-1x for qemu-devel@nongnu.org; Mon, 21 Dec 2015 00:50:58 -0500 References: <1450436632-23980-1-git-send-email-caoj.fnst@cn.fujitsu.com> <1450436632-23980-6-git-send-email-caoj.fnst@cn.fujitsu.com> <567449A8.7040506@redhat.com> From: Cao jin Message-ID: <567793B7.2080905@cn.fujitsu.com> Date: Mon, 21 Dec 2015 13:52:55 +0800 MIME-Version: 1.0 In-Reply-To: <567449A8.7040506@redhat.com> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 5/5] xen-pvdevice: convert to realize() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini , qemu-devel@nongnu.org Cc: ehabkost@redhat.com, Stefano Stabellini , mst@redhat.com, leon.alrae@imgtec.com, aurelien@aurel32.net, rth@twiddle.net On 12/19/2015 02:00 AM, Paolo Bonzini wrote: > CCing Stefano, who is the maintainer. > "Stefano" isn`t in the list when I use scripts/get_maintainer.pl... > Paolo > > On 18/12/2015 12:03, Cao jin wrote: >> Signed-off-by: Cao jin >> --- >> hw/i386/xen/xen_pvdevice.c | 12 ++++++------ >> 1 file changed, 6 insertions(+), 6 deletions(-) >> >> diff --git a/hw/i386/xen/xen_pvdevice.c b/hw/i386/xen/xen_pvdevice.c >> index c218947..a6c93d0 100644 >> --- a/hw/i386/xen/xen_pvdevice.c >> +++ b/hw/i386/xen/xen_pvdevice.c >> @@ -69,14 +69,16 @@ static const MemoryRegionOps xen_pv_mmio_ops = { >> .endianness = DEVICE_LITTLE_ENDIAN, >> }; >> >> -static int xen_pv_init(PCIDevice *pci_dev) >> +static void xen_pv_realize(PCIDevice *pci_dev, Error **errp) >> { >> XenPVDevice *d = XEN_PV_DEVICE(pci_dev); >> uint8_t *pci_conf; >> >> /* device-id property must always be supplied */ >> - if (d->device_id == 0xffff) >> - return -1; >> + if (d->device_id == 0xffff) { >> + error_setg(errp, "Device ID invalid, it must always be supplied") >> + return; >> + } >> >> pci_conf = pci_dev->config; >> >> @@ -97,8 +99,6 @@ static int xen_pv_init(PCIDevice *pci_dev) >> >> pci_register_bar(pci_dev, 1, PCI_BASE_ADDRESS_MEM_PREFETCH, >> &d->mmio); >> - >> - return 0; >> } >> >> static Property xen_pv_props[] = { >> @@ -114,7 +114,7 @@ static void xen_pv_class_init(ObjectClass *klass, void *data) >> DeviceClass *dc = DEVICE_CLASS(klass); >> PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); >> >> - k->init = xen_pv_init; >> + k->realize = xen_pv_realize; >> k->class_id = PCI_CLASS_SYSTEM_OTHER; >> dc->desc = "Xen PV Device"; >> dc->props = xen_pv_props; >> > > > . > -- Yours Sincerely, Cao Jin