From: Markus Armbruster <armbru@redhat.com>
To: Auger Eric <eric.auger@redhat.com>
Cc: alex.williamson@redhat.com, qemu-devel@nongnu.org,
eric.auger.pro@gmail.com
Subject: Re: [Qemu-devel] [PATCH 2/3] vfio/pci: pass an error object to vfio_populate_device
Date: Mon, 12 Sep 2016 17:50:51 +0200 [thread overview]
Message-ID: <87twdlqfqc.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <1730055d-17a9-6735-3e45-56cb53a3c4b8@redhat.com> (Auger Eric's message of "Mon, 12 Sep 2016 17:15:38 +0200")
Auger Eric <eric.auger@redhat.com> writes:
> Hi Markus,
>
> On 12/09/2016 14:51, Markus Armbruster wrote:
>> Eric Auger <eric.auger@redhat.com> writes:
>>
>>> Let's expand the usage of QEMU Error objects to vfio_populate_device.
>>>
>>> Signed-off-by: Eric Auger <eric.auger@redhat.com>
>>> ---
>>> hw/vfio/pci.c | 45 ++++++++++++++++++++-------------------------
>>> 1 file changed, 20 insertions(+), 25 deletions(-)
>>>
>>> diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
>>> index ae1967c..f7768e9 100644
>>> --- a/hw/vfio/pci.c
>>> +++ b/hw/vfio/pci.c
>>> @@ -2197,7 +2197,7 @@ int vfio_populate_vga(VFIOPCIDevice *vdev)
>>> return 0;
>>> }
>>>
>>> -static int vfio_populate_device(VFIOPCIDevice *vdev)
>>> +static void vfio_populate_device(VFIOPCIDevice *vdev, Error **errp)
>>> {
>>> VFIODevice *vbasedev = &vdev->vbasedev;
>>> struct vfio_region_info *reg_info;
>> struct vfio_irq_info irq_info = { .argsz = sizeof(irq_info) };
>> int i, ret = -1;
>>> @@ -2206,19 +2206,19 @@ static int vfio_populate_device(VFIOPCIDevice *vdev)
>>>
>>> /* Sanity check device */
>>> if (!(vbasedev->flags & VFIO_DEVICE_FLAGS_PCI)) {
>>> - error_report("vfio: Um, this isn't a PCI device");
>>> - goto error;
>>> + error_setg(errp, "this isn't a PCI device");
>>> + return;
>>
>> This is actually a bug fix :)
>>
>> Before your series, vfio_populate_device() returns negative errno on
>> some errors, and -1 on others. Its caller expects the former.
>
> Sorry but I don't get your comment. Who is the caller you refer to?
Correction: its caller vfio_initfn() doesn't actually expect -errno.
Regardless, mixing -errno and -1 like vfio_populate_device() does in
master is in bad taste. So this isn't a bug fix, just a cleanup.
>> Please mention the fix in the commit message. Fixing it in a separate
>> commit would also be fine, and possibly clearer.
Mentioning the cleanup wouldn't hurt.
[...]
next prev parent reply other threads:[~2016-09-12 15:51 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-06 7:11 [Qemu-devel] [PATCH 0/3] Convert VFIO-PCI to realize Eric Auger
2016-09-06 7:11 ` [Qemu-devel] [PATCH 1/3] vfio/pci: conversion " Eric Auger
2016-09-12 12:45 ` Markus Armbruster
2016-09-12 14:00 ` Auger Eric
2016-09-12 16:17 ` Alex Williamson
2016-09-12 19:39 ` Auger Eric
2016-09-12 20:05 ` Alex Williamson
2016-09-12 20:51 ` Auger Eric
2016-09-13 6:25 ` Markus Armbruster
2016-09-13 7:21 ` Auger Eric
2016-09-13 15:03 ` Alex Williamson
2016-09-06 7:11 ` [Qemu-devel] [PATCH 2/3] vfio/pci: pass an error object to vfio_populate_device Eric Auger
2016-09-12 12:51 ` Markus Armbruster
2016-09-12 15:15 ` Auger Eric
2016-09-12 15:50 ` Markus Armbruster [this message]
2016-09-12 15:52 ` Auger Eric
2016-09-06 7:11 ` [Qemu-devel] [PATCH 3/3] vfio/pci: pass an error object to vfio_msix_early_setup Eric Auger
2016-09-12 12:58 ` Markus Armbruster
2016-09-12 15:15 ` Auger Eric
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87twdlqfqc.fsf@dusky.pond.sub.org \
--to=armbru@redhat.com \
--cc=alex.williamson@redhat.com \
--cc=eric.auger.pro@gmail.com \
--cc=eric.auger@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.