From bbe10a31b8e16834c77de539fc17e0d52bc8ba62 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Thu, 13 Dec 2018 00:54:23 +0300 Subject: [PATCH] Add SLAB_MERGE_DEFAULT check --- kconfig-hardened-check.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kconfig-hardened-check.py b/kconfig-hardened-check.py index 3f75c88..9cdf182 100755 --- a/kconfig-hardened-check.py +++ b/kconfig-hardened-check.py @@ -157,6 +157,7 @@ def construct_checklist(): checklist.append(OptCheck('STATIC_USERMODEHELPER', 'y', 'my', 'self_protection')) # breaks systemd? checklist.append(OptCheck('PAGE_POISONING_NO_SANITY', 'is not set', 'my', 'self_protection')) checklist.append(OptCheck('PAGE_POISONING_ZERO', 'is not set', 'my', 'self_protection')) + checklist.append(OptCheck('SLAB_MERGE_DEFAULT', 'is not set', 'my', 'self_protection')) # slab_nomerge checklist.append(OptCheck('SECURITY', 'y', 'ubuntu18', 'security_policy')) checklist.append(OptCheck('SECURITY_YAMA', 'y', 'ubuntu18', 'security_policy')) -- 2.31.1