Remove the `PAGE_OWNER` kconfig check
authorAlexander Popov <alex.popov@linux.com>
Mon, 19 Aug 2024 14:30:31 +0000 (17:30 +0300)
committerAlexander Popov <alex.popov@linux.com>
Mon, 19 Aug 2024 14:30:31 +0000 (17:30 +0300)
It is not relevant any more.

kernel_hardening_checker/checks.py

index 3ff699d44c4ef4b002465d215feb698441a3f4ea..dab505bd86c48525471927daa1701595100e8e2e 100755 (executable)
@@ -355,7 +355,6 @@ def add_kconfig_checks(l: List[ChecklistObjType], arch: str) -> None:
 
     # 'cut_attack_surface', 'grsec'
     l += [KconfigCheck('cut_attack_surface', 'grsec', 'ZSMALLOC_STAT', 'is not set')]
-    l += [KconfigCheck('cut_attack_surface', 'grsec', 'PAGE_OWNER', 'is not set')]
     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DEBUG_KMEMLEAK', 'is not set')]
     l += [KconfigCheck('cut_attack_surface', 'grsec', 'BINFMT_AOUT', 'is not set')]
     l += [KconfigCheck('cut_attack_surface', 'grsec', 'KPROBE_EVENTS', 'is not set')]