INTEL_IOMMU_SVM is available only for X86_64
authorAlexander Popov <alex.popov@linux.com>
Sat, 19 Jun 2021 15:17:33 +0000 (18:17 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sat, 19 Jun 2021 15:17:33 +0000 (18:17 +0300)
kconfig_hardened_check/__init__.py

index b119df33b4d563bc10982e93cdb56f5e80bc4f46..da45867b1782b289c9693d9439e3176b9d00be71 100644 (file)
@@ -388,10 +388,11 @@ def construct_checklist(l, arch):
         l += [AND(OptCheck('self_protection', 'clipos', 'STACKLEAK_RUNTIME_DISABLE', 'is not set'),
                   stackleak_is_set)]
     if arch in ('X86_64', 'X86_32'):
-        l += [AND(OptCheck('self_protection', 'clipos', 'INTEL_IOMMU_SVM', 'y'),
-                  iommu_support_is_set)]
         l += [AND(OptCheck('self_protection', 'clipos', 'INTEL_IOMMU_DEFAULT_ON', 'y'),
                   iommu_support_is_set)]
+    if arch == 'X86_64':
+        l += [AND(OptCheck('self_protection', 'clipos', 'INTEL_IOMMU_SVM', 'y'),
+                  iommu_support_is_set)]
     if arch == 'X86_32':
         l += [AND(OptCheck('self_protection', 'clipos', 'INTEL_IOMMU', 'y'),
                   iommu_support_is_set)]