1 /* SPDX-License-Identifier: GPL-2.0 */
2 
3 #ifndef _KERNEL_KCSAN_ATOMIC_H
4 #define _KERNEL_KCSAN_ATOMIC_H
5 
6 #include <linux/types.h>
7 
8 /*
9  * Special rules for certain memory where concurrent conflicting accesses are
10  * common, however, the current convention is to not mark them; returns true if
11  * access to @ptr should be considered atomic. Called from slow-path.
12  */
kcsan_is_atomic_special(const volatile void * ptr)13 static bool kcsan_is_atomic_special(const volatile void *ptr)
14 {
15 	return false;
16 }
17 
18 #endif /* _KERNEL_KCSAN_ATOMIC_H */
19