Marco Elver | dfd402a | 2019-11-14 19:02:54 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | |
| 3 | #ifndef _KERNEL_KCSAN_ATOMIC_H |
| 4 | #define _KERNEL_KCSAN_ATOMIC_H |
| 5 | |
| 6 | #include <linux/jiffies.h> |
Marco Elver | 44656d3 | 2020-02-25 15:32:58 +0100 | [diff] [blame] | 7 | #include <linux/sched.h> |
Marco Elver | dfd402a | 2019-11-14 19:02:54 +0100 | [diff] [blame] | 8 | |
| 9 | /* |
Marco Elver | 44656d3 | 2020-02-25 15:32:58 +0100 | [diff] [blame] | 10 | * Special rules for certain memory where concurrent conflicting accesses are |
| 11 | * common, however, the current convention is to not mark them; returns true if |
| 12 | * access to @ptr should be considered atomic. Called from slow-path. |
Marco Elver | dfd402a | 2019-11-14 19:02:54 +0100 | [diff] [blame] | 13 | */ |
Marco Elver | 44656d3 | 2020-02-25 15:32:58 +0100 | [diff] [blame] | 14 | static bool kcsan_is_atomic_special(const volatile void *ptr) |
Marco Elver | dfd402a | 2019-11-14 19:02:54 +0100 | [diff] [blame] | 15 | { |
Marco Elver | 44656d3 | 2020-02-25 15:32:58 +0100 | [diff] [blame] | 16 | /* volatile globals that have been observed in data races. */ |
| 17 | return ptr == &jiffies || ptr == ¤t->state; |
Marco Elver | dfd402a | 2019-11-14 19:02:54 +0100 | [diff] [blame] | 18 | } |
| 19 | |
| 20 | #endif /* _KERNEL_KCSAN_ATOMIC_H */ |