The patch titled Subject: kasan: Makefile: shut up warnings if CONFIG_COMPILE_TEST=y has been added to the -mm tree. Its filename is kasan-makefile-shut-up-warnings-if-config_compile_test=y.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/kasan-makefile-shut-up-warnings-if-config_compile_test%3Dy.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/kasan-makefile-shut-up-warnings-if-config_compile_test%3Dy.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Andrey Ryabinin <a.ryabinin@xxxxxxxxxxx> Subject: kasan: Makefile: shut up warnings if CONFIG_COMPILE_TEST=y It might be annoying to constantly see this: scripts/Makefile.kasan:16: Cannot use CONFIG_KASAN: -fsanitize=kernel-address is not supported by compiler while performing allmodconfig/allyesconfig build tests. Disable this warning if CONFIG_COMPILE_TEST=y. Signed-off-by: Andrey Ryabinin <a.ryabinin@xxxxxxxxxxx> Cc: Michal Marek <mmarek@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/Makefile.kasan | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff -puN scripts/Makefile.kasan~kasan-makefile-shut-up-warnings-if-config_compile_test=y scripts/Makefile.kasan --- a/scripts/Makefile.kasan~kasan-makefile-shut-up-warnings-if-config_compile_test=y +++ a/scripts/Makefile.kasan @@ -13,12 +13,16 @@ CFLAGS_KASAN := $(call cc-option, -fsani --param asan-instrumentation-with-call-threshold=$(call_threshold)) ifeq ($(call cc-option, $(CFLAGS_KASAN_MINIMAL) -Werror),) + ifneq ($(CONFIG_COMPILE_TEST),y) $(warning Cannot use CONFIG_KASAN: \ -fsanitize=kernel-address is not supported by compiler) + endif else ifeq ($(CFLAGS_KASAN),) - $(warning CONFIG_KASAN: compiler does not support all options.\ - Trying minimal configuration) + ifneq ($(CONFIG_COMPILE_TEST),y) + $(warning CONFIG_KASAN: compiler does not support all options.\ + Trying minimal configuration) + endif CFLAGS_KASAN := $(CFLAGS_KASAN_MINIMAL) endif endif _ Patches currently in -mm which might be from a.ryabinin@xxxxxxxxxxx are arm-factor-out-mmap-aslr-into-mmap_rnd.patch mm-expose-arch_mmap_rnd-when-available.patch mm-split-et_dyn-aslr-from-mmap-aslr.patch mm-fold-arch_randomize_brk-into-arch_has_elf_randomize.patch mm-mempool-poison-elements-backed-by-page-allocator-fix-fix.patch mm-mempool-kasan-poison-mempool-elements.patch kasan-makefile-shut-up-warnings-if-config_compile_test=y.patch gcov-fix-softlockups.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html