public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Yi Liu <yi.l.liu@intel.com>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: <jgg@nvidia.com>, <kevin.tian@intel.com>, <joro@8bytes.org>,
	<eric.auger@redhat.com>, <nicolinc@nvidia.com>,
	<kvm@vger.kernel.org>, <chao.p.peng@linux.intel.com>,
	<iommu@lists.linux.dev>, <baolu.lu@linux.intel.com>,
	<zhenzhong.duan@intel.com>, <vasant.hegde@amd.com>,
	<willy@infradead.org>
Subject: Re: [PATCH v4 2/4] vfio-iommufd: Support pasid [at|de]tach for physical VFIO devices
Date: Tue, 5 Nov 2024 10:00:13 +0800	[thread overview]
Message-ID: <69e3466d-2219-45ad-9065-a55f4c2cf417@intel.com> (raw)
In-Reply-To: <20241104135936.22f7a18b.alex.williamson@redhat.com>

On 2024/11/5 04:59, Alex Williamson wrote:
> On Mon,  4 Nov 2024 05:27:30 -0800
> Yi Liu <yi.l.liu@intel.com> wrote:
> 
>> This adds pasid_at|de]tach_ioas ops for attaching hwpt to pasid of a
>> device and the helpers for it. For now, only vfio-pci supports pasid
>> attach/detach.
>>
>> Signed-off-by: Kevin Tian <kevin.tian@intel.com>
>> Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
>> Signed-off-by: Yi Liu <yi.l.liu@intel.com>
>> ---
>>   drivers/vfio/iommufd.c      | 50 +++++++++++++++++++++++++++++++++++++
>>   drivers/vfio/pci/vfio_pci.c |  2 ++
>>   include/linux/vfio.h        | 11 ++++++++
>>   3 files changed, 63 insertions(+)
>>
>> diff --git a/drivers/vfio/iommufd.c b/drivers/vfio/iommufd.c
>> index 82eba6966fa5..2f5cb4f616ce 100644
>> --- a/drivers/vfio/iommufd.c
>> +++ b/drivers/vfio/iommufd.c
>> @@ -119,14 +119,22 @@ int vfio_iommufd_physical_bind(struct vfio_device *vdev,
>>   	if (IS_ERR(idev))
>>   		return PTR_ERR(idev);
>>   	vdev->iommufd_device = idev;
>> +	ida_init(&vdev->pasids);
>>   	return 0;
>>   }
>>   EXPORT_SYMBOL_GPL(vfio_iommufd_physical_bind);
>>   
>>   void vfio_iommufd_physical_unbind(struct vfio_device *vdev)
>>   {
>> +	int pasid;
>> +
>>   	lockdep_assert_held(&vdev->dev_set->lock);
>>   
>> +	while ((pasid = ida_find_first(&vdev->pasids)) >= 0) {
>> +		iommufd_device_pasid_detach(vdev->iommufd_device, pasid);
>> +		ida_free(&vdev->pasids, pasid);
>> +	}
>> +
>>   	if (vdev->iommufd_attached) {
>>   		iommufd_device_detach(vdev->iommufd_device);
>>   		vdev->iommufd_attached = false;
>> @@ -168,6 +176,48 @@ void vfio_iommufd_physical_detach_ioas(struct vfio_device *vdev)
>>   }
>>   EXPORT_SYMBOL_GPL(vfio_iommufd_physical_detach_ioas);
>>   
>> +int vfio_iommufd_physical_pasid_attach_ioas(struct vfio_device *vdev,
>> +					    u32 pasid, u32 *pt_id)
>> +{
>> +	int rc;
>> +
>> +	lockdep_assert_held(&vdev->dev_set->lock);
>> +
>> +	if (WARN_ON(!vdev->iommufd_device))
>> +		return -EINVAL;
>> +
>> +	if (ida_exists(&vdev->pasids, pasid))
>> +		return iommufd_device_pasid_replace(vdev->iommufd_device,
>> +						    pasid, pt_id);
>> +
>> +	rc = ida_alloc_range(&vdev->pasids, pasid, pasid, GFP_KERNEL);
>> +	if (rc < 0)
>> +		return rc;
>> +
>> +	rc = iommufd_device_pasid_attach(vdev->iommufd_device, pasid, pt_id);
>> +	if (rc)
>> +		ida_free(&vdev->pasids, pasid);
>> +
>> +	return 0;
> 
> I think you meant to return rc here.  Thanks,

you are absolutely right. :)

-- 
Regards,
Yi Liu

  reply	other threads:[~2024-11-05  1:55 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-04 13:27 [PATCH v4 0/4] vfio-pci support pasid attach/detach Yi Liu
2024-11-04 13:27 ` [PATCH v4 1/4] ida: Add ida_find_first_range() Yi Liu
2024-11-04 13:27 ` [PATCH v4 2/4] vfio-iommufd: Support pasid [at|de]tach for physical VFIO devices Yi Liu
2024-11-04 20:59   ` Alex Williamson
2024-11-05  2:00     ` Yi Liu [this message]
2024-11-04 13:27 ` [PATCH v4 3/4] vfio: VFIO_DEVICE_[AT|DE]TACH_IOMMUFD_PT support pasid Yi Liu
2024-11-04 21:00   ` Alex Williamson
2024-11-05  7:44     ` Yi Liu
2024-11-04 13:27 ` [PATCH v4 4/4] iommufd: Extend IOMMU_GET_HW_INFO to report PASID capability Yi Liu
2024-11-04 13:41 ` [PATCH v4 0/4] vfio-pci support pasid attach/detach Yi Liu

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=69e3466d-2219-45ad-9065-a55f4c2cf417@intel.com \
    --to=yi.l.liu@intel.com \
    --cc=alex.williamson@redhat.com \
    --cc=baolu.lu@linux.intel.com \
    --cc=chao.p.peng@linux.intel.com \
    --cc=eric.auger@redhat.com \
    --cc=iommu@lists.linux.dev \
    --cc=jgg@nvidia.com \
    --cc=joro@8bytes.org \
    --cc=kevin.tian@intel.com \
    --cc=kvm@vger.kernel.org \
    --cc=nicolinc@nvidia.com \
    --cc=vasant.hegde@amd.com \
    --cc=willy@infradead.org \
    --cc=zhenzhong.duan@intel.com \
    /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