Fix the comment: SHADOW_CALL_STACK is now available for gcc (Linux 5.18)
authorAlexander Popov <alex.popov@linux.com>
Fri, 2 Sep 2022 10:32:25 +0000 (13:32 +0300)
committerAlexander Popov <alex.popov@linux.com>
Fri, 2 Sep 2022 10:32:25 +0000 (13:32 +0300)
kconfig_hardened_check/__init__.py

index a160d527cce5fbb4a4b8d9b0e24ba9c95f1bfb91..d487c0d8b679b131112055a1cbe1ba920c685d5c 100644 (file)
@@ -488,7 +488,7 @@ def add_kconfig_checks(l, arch):
         l += [AND(KconfigCheck('self_protection', 'my', 'AMD_IOMMU_V2', 'y'),
                   iommu_support_is_set)]
     if arch == 'ARM64':
-        l += [KconfigCheck('self_protection', 'my', 'SHADOW_CALL_STACK', 'y')] # depends on clang, maybe it's alternative to STACKPROTECTOR_STRONG
+        l += [KconfigCheck('self_protection', 'my', 'SHADOW_CALL_STACK', 'y')] # maybe it's alternative to STACKPROTECTOR_STRONG
         l += [KconfigCheck('self_protection', 'my', 'KASAN_HW_TAGS', 'y')]
         cfi_clang_is_set = KconfigCheck('self_protection', 'my', 'CFI_CLANG', 'y')
         l += [cfi_clang_is_set]