Commit 26f21f3a authored by Andrey Konovalov's avatar Andrey Konovalov Committed by Andrew Morton

kasan: only define metadata offsets for Generic mode

Hide the definitions of alloc_meta_offset and free_meta_offset under an
ifdef CONFIG_KASAN_GENERIC check, as these fields are now only used when
the Generic mode is enabled.

Link: https://lkml.kernel.org/r/d4bafa0534facafd1a23c465a94261e64f366493.1662411799.git.andreyknvl@google.comSigned-off-by: default avatarAndrey Konovalov <andreyknvl@google.com>
Reviewed-by: default avatarMarco Elver <elver@google.com>
Cc: Alexander Potapenko <glider@google.com>
Cc: Andrey Ryabinin <ryabinin.a.a@gmail.com>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Evgenii Stepanov <eugenis@google.com>
Cc: Peter Collingbourne <pcc@google.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 3b7f8813
...@@ -98,8 +98,10 @@ static inline bool kasan_has_integrated_init(void) ...@@ -98,8 +98,10 @@ static inline bool kasan_has_integrated_init(void)
#ifdef CONFIG_KASAN #ifdef CONFIG_KASAN
struct kasan_cache { struct kasan_cache {
#ifdef CONFIG_KASAN_GENERIC
int alloc_meta_offset; int alloc_meta_offset;
int free_meta_offset; int free_meta_offset;
#endif
bool is_kmalloc; bool is_kmalloc;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment