From: Stijn Tintel Date: Sun, 7 Nov 2021 16:54:28 +0000 (+0200) Subject: kernel: add missing keyword to KERNEL_KASAN_VMALLOC X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fdedeckeh.git;a=commitdiff_plain;h=0ccbcb0223a312467cd151aa876ab5abf7e94b71 kernel: add missing keyword to KERNEL_KASAN_VMALLOC The help keyword is missing, which breaks menuconfig etc. Fixes: cbeab2cd9919 ("kernel: add another missing KASAN symbol") Signed-off-by: Stijn Tintel --- diff --git a/config/Config-kernel.in b/config/Config-kernel.in index f5b42b71ee..abb85c83be 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -173,6 +173,7 @@ config KERNEL_KASAN_EXTRA CONFIG KERNEL_KASAN_VMALLOC bool "Back mappings in vmalloc space with real shadow memory" depends on KERNEL_KASAN + help By default, the shadow region for vmalloc space is the read-only zero page. This means that KASAN cannot detect errors involving vmalloc space.