]> xenbits.xensource.com Git - people/aperard/xen-unstable.git/commitdiff
iommu/amd-vi: fix checking for Invalidate All support in amd_iommu_resume()
authorRoger Pau Monné <roger.pau@citrix.com>
Tue, 13 Jun 2023 12:41:32 +0000 (14:41 +0200)
committerJan Beulich <jbeulich@suse.com>
Tue, 13 Jun 2023 12:41:32 +0000 (14:41 +0200)
The iommu local variable does not point to to a valid amd_iommu element
after the call to for_each_amd_iommu().  Instead check whether any IOMMU
on the system doesn't support Invalidate All in order to perform the
per-domain and per-device flushes.

Fixes: 9c46139de889 ('amd iommu: Support INVALIDATE_IOMMU_ALL command.')
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
xen/drivers/passthrough/amd/iommu_init.c

index 9773ccfcb41fe700af5c592777ba9d3eab3f0ef7..7dbd7e7d094a5341add88f54b6bd9a70fca96cdb 100644 (file)
@@ -1580,6 +1580,7 @@ void cf_check amd_iommu_crash_shutdown(void)
 void cf_check amd_iommu_resume(void)
 {
     struct amd_iommu *iommu;
+    bool invalidate_all = true;
 
     for_each_amd_iommu ( iommu )
     {
@@ -1589,10 +1590,12 @@ void cf_check amd_iommu_resume(void)
         */
         disable_iommu(iommu);
         enable_iommu(iommu);
+        if ( !iommu->features.flds.ia_sup )
+            invalidate_all = false;
     }
 
     /* flush all cache entries after iommu re-enabled */
-    if ( !iommu->features.flds.ia_sup )
+    if ( !invalidate_all )
     {
         invalidate_all_devices();
         invalidate_all_domain_pages();