mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 13:30:57 +07:00
13 lines
366 B
C
13 lines
366 B
C
|
#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
|