Kernel KVM virtualization development
 help / color / mirror / Atom feed
From: Baolu Lu <baolu.lu@linux.intel.com>
To: Samiullah Khawaja <skhawaja@google.com>
Cc: baolu.lu@linux.intel.com, David Woodhouse <dwmw2@infradead.org>,
	Joerg Roedel <joro@8bytes.org>, Will Deacon <will@kernel.org>,
	Jason Gunthorpe <jgg@ziepe.ca>,
	Robin Murphy <robin.murphy@arm.com>,
	Kevin Tian <kevin.tian@intel.com>,
	Alex Williamson <alex@shazbot.org>, Shuah Khan <shuah@kernel.org>,
	iommu@lists.linux.dev, linux-kernel@vger.kernel.org,
	kvm@vger.kernel.org, Pratyush Yadav <pratyush@kernel.org>,
	Pasha Tatashin <pasha.tatashin@soleen.com>,
	David Matlack <dmatlack@google.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Pranjal Shrivastava <praan@google.com>,
	Vipin Sharma <vipinsh@google.com>
Subject: Re: [PATCH v3 12/18] iommu/vt-d: Handle reattach of the restored domain
Date: Sun, 12 Jul 2026 18:27:26 +0800	[thread overview]
Message-ID: <a398dd84-8c2a-445f-869c-e1b18b6f4dfa@linux.intel.com> (raw)
In-Reply-To: <ajnGMjFxhNCbW0To@google.com>

On 6/23/2026 8:26 AM, Samiullah Khawaja wrote:
> On Mon, Jun 22, 2026 at 01:44:06PM +0800, Baolu Lu wrote:
>> On 6/15/26 07:37, Samiullah Khawaja wrote:
>>> Reattach the restored domain to the preserved device using restored
>>> domain ID. While reattaching do not setup the context and PASID entries
>>> as those are preserved during liveupdate.
>>>
>>> Signed-off-by: Samiullah Khawaja<skhawaja@google.com>
>>> ---
>>>  drivers/iommu/intel/iommu.c      |  46 ++++++++++---
>>>  drivers/iommu/intel/iommu.h      |  17 +++++
>>>  drivers/iommu/intel/liveupdate.c | 111 +++++++++++++++++++++++++++++++
>>>  3 files changed, 163 insertions(+), 11 deletions(-)
>>>
>>> diff --git a/drivers/iommu/intel/iommu.c b/drivers/iommu/intel/iommu.c
>>> index cd40e274482b..91b67ccba011 100644
>>> --- a/drivers/iommu/intel/iommu.c
>>> +++ b/drivers/iommu/intel/iommu.c
>>> @@ -1311,10 +1311,16 @@ static int dmar_domain_attach_device(struct 
>>> dmar_domain *domain,
>>>  {
>>>      struct device_domain_info *info = dev_iommu_priv_get(dev);
>>>      struct intel_iommu *iommu = info->iommu;
>>> +    struct iommu_device_ser *device_ser;
>>>      unsigned long flags;
>>>      int ret;
>>> -    ret = domain_attach_iommu(domain, iommu);
>>> +    device_ser = dev_iommu_restored_state(dev);
>>> +    if (!device_ser)
>>> +        ret = domain_attach_iommu(domain, iommu);
>>> +    else
>>> +        ret = intel_iommu_domain_reattach_iommu(domain,
>>> +                            iommu, device_ser);
>>>      if (ret)
>>>          return ret;
>>> @@ -1327,16 +1333,20 @@ static int dmar_domain_attach_device(struct 
>>> dmar_domain *domain,
>>>      if (dev_is_real_dma_subdevice(dev))
>>>          return 0;
>>> -    if (!sm_supported(iommu))
>>> -        ret = domain_context_mapping(domain, dev);
>>> -    else if (intel_domain_is_fs_paging(domain))
>>> -        ret = domain_setup_first_level(iommu, domain, dev,
>>> -                           IOMMU_NO_PASID, NULL);
>>> -    else if (intel_domain_is_ss_paging(domain))
>>> -        ret = domain_setup_second_level(iommu, domain, dev,
>>> -                        IOMMU_NO_PASID, NULL);
>>> -    else if (WARN_ON(true))
>>> -        ret = -EINVAL;
>>> +    if (!device_ser) {
>>> +        if (!sm_supported(iommu))
>>> +            ret = domain_context_mapping(domain, dev);
>>> +        else if (intel_domain_is_fs_paging(domain))
>>> +            ret = domain_setup_first_level(iommu, domain, dev,
>>> +                               IOMMU_NO_PASID, NULL);
>>> +        else if (intel_domain_is_ss_paging(domain))
>>> +            ret = domain_setup_second_level(iommu, domain, dev,
>>> +                            IOMMU_NO_PASID, NULL);
>>> +        else if (WARN_ON(true))
>>> +            ret = -EINVAL;
>>> +    } else if (!sm_supported(iommu)) {
>>> +        iommu_enable_pci_ats(info);
>>> +    }
>>
>> Instead of merging domain restoration into the attach_dev path, how
>> about adding a new callback to restore a preserved domain for a device?
> 
> Even with a new callback, the driver still just fetches the restored
> state and takes a different path. I am guessing we can just do the
> following inside the driver to keep it clean:
> 
> static int intel_iommu_attach_device(struct iommu_domain *domain,
>                                      struct device *dev,
>                                          struct iommu_domain *old)
> {
>      struct iommu_device_ser *device_ser = dev_iommu_restored_state(dev);
> 
>      if (device_ser)
>          return _intel_iommu_restore_dev(domain, dev, device_ser);
> 
>      return _intel_iommu_attach_device(domain, dev, old);
> }
> 
> This keeps the separation you want without touching the generic ops.
> WDYT?
> 
> With the new callback, this check is just moved into the core inside
> __iommu_attach_device(). I am concerned that later down the road when we
> add PASID support, we will add restore_dev_pasid().

Okay, that also works for me.

Thanks,
baolu

  reply	other threads:[~2026-07-12 10:27 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-14 23:37 [PATCH v3 00/18] iommu: Add live update state preservation Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 01/18] memfd: export memfd_get_seals() Samiullah Khawaja
2026-06-15  5:14   ` Ankit Soni
2026-06-15 11:45   ` Pratyush Yadav
2026-06-14 23:37 ` [PATCH v3 02/18] iommu: Implement IOMMU Live update FLB callbacks Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 03/18] iommu/pages: Add APIs to preserve/unpreserve/restore iommu pages Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 04/18] iommupt: Implement preserve/unpreserve/restore callbacks Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 05/18] iommu: Implement IOMMU domain preservation Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 06/18] iommu: Implement device and IOMMU HW preservation Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 07/18] iommu/vt-d: Implement device and iommu preserve/unpreserve ops Samiullah Khawaja
2026-06-22  1:50   ` Baolu Lu
2026-06-22 19:19     ` Samiullah Khawaja
2026-07-12  7:35       ` Baolu Lu
2026-06-14 23:37 ` [PATCH v3 08/18] iommu/vt-d: clear unpreserved context entries during shutdown Samiullah Khawaja
2026-06-22  2:47   ` Baolu Lu
2026-06-22 22:56     ` Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 09/18] iommu: Add APIs to get iommu and device preserved state Samiullah Khawaja
2026-06-22  3:10   ` Baolu Lu
2026-06-22 23:27     ` Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 10/18] iommu/vt-d: Restore IOMMU state and reclaimed domain ids Samiullah Khawaja
2026-06-22  5:14   ` Baolu Lu
2026-06-22 23:30     ` Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 11/18] iommu: Restore and reattach preserved domains to devices Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 12/18] iommu/vt-d: Handle reattach of the restored domain Samiullah Khawaja
2026-06-22  5:44   ` Baolu Lu
2026-06-23  0:26     ` Samiullah Khawaja
2026-07-12 10:27       ` Baolu Lu [this message]
2026-06-14 23:37 ` [PATCH v3 13/18] iommu/vt-d: preserve PASID table of preserved device Samiullah Khawaja
2026-06-22  6:01   ` Baolu Lu
2026-06-23  0:36     ` Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 14/18] iommufd: Implement ioctl to mark HWPT for preservation Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 15/18] iommufd: Persist iommu hardware pagetables for live update Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 16/18] iommufd: Add APIs to preserve/unpreserve a vfio cdev Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 17/18] vfio/pci: Preserve the iommufd state of the " Samiullah Khawaja
2026-06-14 23:37 ` [PATCH v3 18/18] iommufd/selftest: Add test to verify iommufd preservation Samiullah Khawaja

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=a398dd84-8c2a-445f-869c-e1b18b6f4dfa@linux.intel.com \
    --to=baolu.lu@linux.intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=alex@shazbot.org \
    --cc=dmatlack@google.com \
    --cc=dwmw2@infradead.org \
    --cc=iommu@lists.linux.dev \
    --cc=jgg@ziepe.ca \
    --cc=joro@8bytes.org \
    --cc=kevin.tian@intel.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pasha.tatashin@soleen.com \
    --cc=praan@google.com \
    --cc=pratyush@kernel.org \
    --cc=robin.murphy@arm.com \
    --cc=shuah@kernel.org \
    --cc=skhawaja@google.com \
    --cc=vipinsh@google.com \
    --cc=will@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