kasan: fix a missing header include of static_keys.h
authorJoey Gouly <joey.gouly@arm.com>
Tue, 1 Mar 2022 15:45:18 +0000 (15:45 +0000)
committerWill Deacon <will@kernel.org>
Wed, 9 Mar 2022 12:13:37 +0000 (12:13 +0000)
commitd8fd5a1e78db375f2246d43df7833fec07a221cd
treec58f47ad9900f4e360d97cf23ff4a7a16f0d3abf
parent766121ba5de38a6f67980ec24a6af76c55def100
kasan: fix a missing header include of static_keys.h

The kasan-enabled.h header relies on static keys, so make sure
to include the header to avoid compilation errors (with JUMP_LABEL=n).

It fixes the following:
./include/linux/kasan-enabled.h:9:1: warning: data definition has no type or storage class
    9 | DECLARE_STATIC_KEY_FALSE(kasan_flag_enabled);
      | ^~~~~~~~~~~~~~~~~~~~~~~~
error: type defaults to 'int' in declaration of 'DECLARE_STATIC_KEY_FALSE' [-Werror=implicit-int]

Fixes: f9b5e46f4097eb29 ("kasan: split kasan_*enabled() functions into a separate header")
Cc: Peter Collingbourne <pcc@google.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Acked-by: Andrey Konovalov <andreyknvl@gmail.com>
Signed-off-by: Joey Gouly <joey.gouly@arm.com>
Link: https://lore.kernel.org/r/20220301154518.19456-1-joey.gouly@arm.com
Signed-off-by: Will Deacon <will@kernel.org>
include/linux/kasan-enabled.h