From: Pranjal Shrivastava <praan@google.com>
To: Richard Gemego <richardgemego@gmail.com>
Cc: nicolinc@nvidia.com, baolu.lu@linux.intel.com,
kevin.tian@intel.com, jgg@ziepe.ca, iommu@lists.linux.dev,
Quan Zhou <zhouquan@iscas.ac.cn>
Subject: Re: [PATCH] iommufd: fix returns ENOENT in iommufd_viommu_get_vdev_id()
Date: Mon, 4 Aug 2025 11:25:42 +0000 [thread overview]
Message-ID: <aJCYtnyBjvTxULbE@google.com> (raw)
In-Reply-To: <20250804100859.3462571-1-richardgemego@gmail.com>
On Mon, Aug 04, 2025 at 06:08:59PM +0800, Richard Gemego wrote:
Hi Richard,
> In iommufd_viommu_get_vdev_id(), if viommu does not have any vdevs, fix
> this func to return 0 instead of ENOENT.
>
> Fixes: ea94b211c548 ("iommufd/viommu: Add iommufd_viommu_get_vdev_id helper")
> Signed-off-by: Richard Gemego <richardgemego@gmail.com>
> Signed-off-by: Quan Zhou <zhouquan@iscas.ac.cn>
> ---
> drivers/iommu/iommufd/driver.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/iommu/iommufd/driver.c b/drivers/iommu/iommufd/driver.c
> index 922cd1fe7ec2..ad635af8555b 100644
> --- a/drivers/iommu/iommufd/driver.c
> +++ b/drivers/iommu/iommufd/driver.c
> @@ -68,6 +68,7 @@ int iommufd_viommu_get_vdev_id(struct iommufd_viommu *viommu,
> break;
> }
> }
> + if (!index)
> + rc = 0;
> xa_unlock(&viommu->vdevs);
> return rc;
> }
I'm afraid, I don't understand the motivation behind this? IIUC, if a
dev is not associated to the vIOMMU -ENOENT is returned. This patch
seems to be returning 0 when the xarray is empty. The issue is that
returning 0, would indicate the caller that `*vdev_id` holds a valid
value which doesn't seem to be the case here?
It seems the original behavior is correct. Nicolin/Jason am I missing
something here?
Thanks,
Praan.
next prev parent reply other threads:[~2025-08-04 11:25 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-04 10:08 [PATCH] iommufd: fix returns ENOENT in iommufd_viommu_get_vdev_id() Richard Gemego
2025-08-04 11:25 ` Pranjal Shrivastava [this message]
2025-08-04 17:44 ` Nicolin Chen
2025-08-05 2:46 ` Richard Gemego
2025-08-05 3:33 ` Nicolin Chen
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=aJCYtnyBjvTxULbE@google.com \
--to=praan@google.com \
--cc=baolu.lu@linux.intel.com \
--cc=iommu@lists.linux.dev \
--cc=jgg@ziepe.ca \
--cc=kevin.tian@intel.com \
--cc=nicolinc@nvidia.com \
--cc=richardgemego@gmail.com \
--cc=zhouquan@iscas.ac.cn \
/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