[RFC PATCH v2 4/7] iommufd: Associate kvm pointer to iommufd ctx
Tian, Kevin
kevin.tian at intel.com
Mon Jun 24 18:53:43 PDT 2024
> From: Jason Gunthorpe <jgg at ziepe.ca>
> Sent: Thursday, February 8, 2024 11:42 PM
>
> On Thu, Feb 08, 2024 at 03:18:34PM +0000, Shameer Kolothum wrote:
>
> > diff --git a/drivers/iommu/iommufd/iommufd_private.h
> b/drivers/iommu/iommufd/iommufd_private.h
> > index 991f864d1f9b..28ede82bb1a6 100644
> > --- a/drivers/iommu/iommufd/iommufd_private.h
> > +++ b/drivers/iommu/iommufd/iommufd_private.h
> > @@ -16,6 +16,7 @@ struct iommu_domain;
> > struct iommu_group;
> > struct iommu_option;
> > struct iommufd_device;
> > +struct kvm;
> >
> > struct iommufd_ctx {
> > struct file *file;
> > @@ -27,6 +28,8 @@ struct iommufd_ctx {
> > /* Compatibility with VFIO no iommu */
> > u8 no_iommu_mode;
> > struct iommufd_ioas *vfio_ioas;
> > + /* Associated KVM pointer */
> > + struct kvm *kvm;
> > };
>
> Associating the KVM with the entire iommufd is a big hammer, is this
> what we want to do?
>
> I know it has to be linked to domain allocation and the coming
> "viommu" object, and it is already linked to VFIO.
>
> It means we support one KVM per iommufd (which doesn't seem
> unreasonable, but also the first time we've had such a limitation)
>
> The other option would be to pass in the kvm to the individual sub
> objects.
>
> Kevin?
>
I prefer to not imposing such limitation. Passing it in optionally
to the individual sub objects e.g. hwpt or viommu makes more
sense to me.
More information about the linux-arm-kernel
mailing list