diff options
author | Andrey Konovalov <andreyknvl@google.com> | 2023-12-21 21:04:44 +0100 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-12-29 11:58:44 -0800 |
commit | 5cb6674b694b84803cbee8bfccaa2bfdfeb6eae4 (patch) | |
tree | e4c8689bb48440430df502dbb6032662ca57a33c /include/linux/kasan.h | |
parent | 27232ba96cfbc6b9bdb363231c9c31305bb9a2bc (diff) | |
download | linux-5cb6674b694b84803cbee8bfccaa2bfdfeb6eae4.tar.gz linux-5cb6674b694b84803cbee8bfccaa2bfdfeb6eae4.tar.bz2 linux-5cb6674b694b84803cbee8bfccaa2bfdfeb6eae4.zip |
mm, kasan: use KASAN_TAG_KERNEL instead of 0xff
Use the KASAN_TAG_KERNEL marco instead of open-coding 0xff in the mm code.
This macro is provided by include/linux/kasan-tags.h, which does not
include any other headers, so it's safe to include it into mm.h without
causing circular include dependencies.
Link: https://lkml.kernel.org/r/71db9087b0aebb6c4dccbc609cc0cd50621533c7.1703188911.git.andreyknvl@google.com
Signed-off-by: Andrey Konovalov <andreyknvl@google.com>
Cc: Alexander Potapenko <glider@google.com>
Cc: Andrey Ryabinin <ryabinin.a.a@gmail.com>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Marco Elver <elver@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include/linux/kasan.h')
-rw-r--r-- | include/linux/kasan.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/kasan.h b/include/linux/kasan.h index d49e3d4c099e..dbb06d789e74 100644 --- a/include/linux/kasan.h +++ b/include/linux/kasan.h @@ -4,6 +4,7 @@ #include <linux/bug.h> #include <linux/kasan-enabled.h> +#include <linux/kasan-tags.h> #include <linux/kernel.h> #include <linux/static_key.h> #include <linux/types.h> |