From: Alexander Popov Date: Wed, 12 Dec 2018 21:54:23 +0000 (+0300) Subject: Add SLAB_MERGE_DEFAULT check X-Git-Tag: v0.5.2~66 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=bbe10a31b8e16834c77de539fc17e0d52bc8ba62;p=kconfig-hardened-check.git Add SLAB_MERGE_DEFAULT check --- 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'))