Add the check for the slub_merge cmdline parameter
authorAlexander Popov <alex.popov@linux.com>
Sat, 21 Jan 2023 22:41:43 +0000 (01:41 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sat, 21 Jan 2023 22:51:26 +0000 (01:51 +0300)
kconfig_hardened_check/__init__.py

index 65d51fb3b27d4a4f698baca84a9d0b69dd0dd453..e5fd0ff3250b210e90823677718021bc3e67ffcb 100644 (file)
@@ -763,7 +763,8 @@ def add_cmdline_checks(l, arch):
                  CmdlineCheck('self_protection', 'kspp', 'slub_debug', 'P')))]
     l += [OR(CmdlineCheck('self_protection', 'kspp', 'slab_nomerge', 'is present'),
              AND(KconfigCheck('self_protection', 'clipos', 'SLAB_MERGE_DEFAULT', 'is not set'),
-                 CmdlineCheck('self_protection', 'kspp', 'slab_merge', 'is not set')))]
+                 CmdlineCheck('self_protection', 'kspp', 'slab_merge', 'is not set'),
+                 CmdlineCheck('self_protection', 'kspp', 'slub_merge', 'is not set')))]
     l += [OR(CmdlineCheck('self_protection', 'kspp', 'iommu.strict', '1'),
              AND(KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_DMA_STRICT', 'y'),
                  CmdlineCheck('self_protection', 'kspp', 'iommu.strict', 'is not set')))]