From: Heiner Kallweit <hkallweit1@gmail.com>
To: Cornelia Huck <cohuck@redhat.com>
Cc: Alex Williamson <alex.williamson@redhat.com>, kvm@vger.kernel.org
Subject: Re: [PATCH] vfio/pci: Fix handling of pci use accessor return codes
Date: Mon, 25 Jan 2021 21:06:03 +0100 [thread overview]
Message-ID: <1b4b36a2-edfd-bde1-a265-cb9b0272bd55@gmail.com> (raw)
In-Reply-To: <20210125191147.5f876923.cohuck@redhat.com>
On 25.01.2021 19:11, Cornelia Huck wrote:
> On Sun, 24 Jan 2021 16:35:41 +0100
> Heiner Kallweit <hkallweit1@gmail.com> wrote:
>
>> The pci user accessors return negative errno's on error.
>>
>> Fixes: f572a960a15e ("vfio/pci: Intel IGD host and LCP bridge config space access")
>> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
>> ---
>> drivers/vfio/pci/vfio_pci_igd.c | 10 +++++-----
>> 1 file changed, 5 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/vfio/pci/vfio_pci_igd.c b/drivers/vfio/pci/vfio_pci_igd.c
>> index 53d97f459..e66dfb017 100644
>> --- a/drivers/vfio/pci/vfio_pci_igd.c
>> +++ b/drivers/vfio/pci/vfio_pci_igd.c
>> @@ -127,7 +127,7 @@ static size_t vfio_pci_igd_cfg_rw(struct vfio_pci_device *vdev,
>>
>> ret = pci_user_read_config_byte(pdev, pos, &val);
>> if (ret)
>> - return pcibios_err_to_errno(ret);
>> + return ret;
>
> This is actually not strictly needed, as pcibios_err_to_errno() already
> keeps errors <= 0 unchanged, so more a cleanup than a fix?
>
I agree. Although I'd argue that the author of the original commit missed
the fact the the user accessors return errno's, and the code just works
by chance, because of the "good will" of pcibios_err_to_errno().
So up to you whether it's worth it to apply this change also to stable.
> Anyway,
>
> Reviewed-by: Cornelia Huck <cohuck@redhat.com>
>
>>
>> if (copy_to_user(buf + count - size, &val, 1))
>> return -EFAULT;
>
next prev parent reply other threads:[~2021-01-25 20:07 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-24 15:35 [PATCH] vfio/pci: Fix handling of pci use accessor return codes Heiner Kallweit
2021-01-25 18:11 ` Cornelia Huck
2021-01-25 20:06 ` Heiner Kallweit [this message]
2021-02-02 17:22 ` Alex Williamson
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=1b4b36a2-edfd-bde1-a265-cb9b0272bd55@gmail.com \
--to=hkallweit1@gmail.com \
--cc=alex.williamson@redhat.com \
--cc=cohuck@redhat.com \
--cc=kvm@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox