|
@@ -238,6 +238,7 @@ static __always_inline void __write_once_size(volatile void *p, void *res, int s
|
|
* required ordering.
|
|
* required ordering.
|
|
*/
|
|
*/
|
|
#include <asm/barrier.h>
|
|
#include <asm/barrier.h>
|
|
|
|
+#include <linux/kasan-checks.h>
|
|
|
|
|
|
#define __READ_ONCE(x, check) \
|
|
#define __READ_ONCE(x, check) \
|
|
({ \
|
|
({ \
|
|
@@ -257,6 +258,13 @@ static __always_inline void __write_once_size(volatile void *p, void *res, int s
|
|
*/
|
|
*/
|
|
#define READ_ONCE_NOCHECK(x) __READ_ONCE(x, 0)
|
|
#define READ_ONCE_NOCHECK(x) __READ_ONCE(x, 0)
|
|
|
|
|
|
|
|
+static __no_kasan_or_inline
|
|
|
|
+unsigned long read_word_at_a_time(const void *addr)
|
|
|
|
+{
|
|
|
|
+ kasan_check_read(addr, 1);
|
|
|
|
+ return *(unsigned long *)addr;
|
|
|
|
+}
|
|
|
|
+
|
|
#define WRITE_ONCE(x, val) \
|
|
#define WRITE_ONCE(x, val) \
|
|
({ \
|
|
({ \
|
|
union { typeof(x) __val; char __c[1]; } __u = \
|
|
union { typeof(x) __val; char __c[1]; } __u = \
|