![]() |
|
|||
0001 /* SPDX-License-Identifier: GPL-2.0 */ 0002 #ifndef _LINUX_KASAN_TAGS_H 0003 #define _LINUX_KASAN_TAGS_H 0004 0005 #define KASAN_TAG_KERNEL 0xFF /* native kernel pointers tag */ 0006 #define KASAN_TAG_INVALID 0xFE /* inaccessible memory tag */ 0007 #define KASAN_TAG_MAX 0xFD /* maximum value for random tags */ 0008 0009 #ifdef CONFIG_KASAN_HW_TAGS 0010 #define KASAN_TAG_MIN 0xF0 /* minimum value for random tags */ 0011 #else 0012 #define KASAN_TAG_MIN 0x00 /* minimum value for random tags */ 0013 #endif 0014 0015 #endif /* LINUX_KASAN_TAGS_H */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |