]> git.baikalelectronics.ru Git - kernel.git/commit
kasan: fix clang compilation warning due to stack protector
authorAndrey Konovalov <andreyknvl@google.com>
Tue, 2 Jun 2020 04:52:43 +0000 (21:52 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 2 Jun 2020 17:59:12 +0000 (10:59 -0700)
commite39e0ff0d55fbf297f2f372a133031b686bb17e1
treefa0ddaab9d0a6e266463298e88e40aefeed94cc4
parent5b15ebf4edd79683bdfbd65022a0ad98123817d4
kasan: fix clang compilation warning due to stack protector

KASAN uses a single cc-option invocation to disable both conserve-stack
and stack-protector flags.  The former flag is not present in Clang,
which causes cc-option to fail, and results in stack-protector being
enabled.

Fix by using separate cc-option calls for each flag.  Also collect all
flags in a variable to avoid calling cc-option multiple times for
different files.

Reported-by: Qian Cai <cai@lca.pw>
Signed-off-by: Andrey Konovalov <andreyknvl@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Reviewed-by: Marco Elver <elver@google.com>
Link: http://lkml.kernel.org/r/c2f0c8e4048852ae014f4a391d96ca42d27e3255.1590779332.git.andreyknvl@google.com
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/kasan/Makefile