public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Cornelia Huck <cohuck@redhat.com>
To: Heiner Kallweit <hkallweit1@gmail.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 19:11:47 +0100	[thread overview]
Message-ID: <20210125191147.5f876923.cohuck@redhat.com> (raw)
In-Reply-To: <3d14987b-278c-be28-be7b-8f3c733fc4e9@gmail.com>

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?

Anyway,

Reviewed-by: Cornelia Huck <cohuck@redhat.com>

>  
>  		if (copy_to_user(buf + count - size, &val, 1))
>  			return -EFAULT;


  reply	other threads:[~2021-01-25 18:13 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 [this message]
2021-01-25 20:06   ` Heiner Kallweit
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=20210125191147.5f876923.cohuck@redhat.com \
    --to=cohuck@redhat.com \
    --cc=alex.williamson@redhat.com \
    --cc=hkallweit1@gmail.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