1
2
3
4
5
6
7
8
9
10
11
12
| #ifndef _LINUX_KASAN_CHECKS_H
| #define _LINUX_KASAN_CHECKS_H
|
| #ifdef CONFIG_KASAN
| void kasan_check_read(const void *p, unsigned int size);
| void kasan_check_write(const void *p, unsigned int size);
| #else
| static inline void kasan_check_read(const void *p, unsigned int size) { }
| static inline void kasan_check_write(const void *p, unsigned int size) { }
| #endif
|
| #endif
|
|