diff options
author | Paul E. McKenney <paulmck@linux.ibm.com> | 2019-05-22 13:07:45 -0400 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.ibm.com> | 2019-06-13 18:38:33 -0400 |
commit | b3119cde1d70d6df1574b9f26d8e087e8e5116b4 (patch) | |
tree | a8872aae107fd6de9a481a114d9116ae24274480 | |
parent | 96050c68be33edef18800ad6748f61f81db81a20 (diff) |
rcu: Fix irritating whitespace error in rcu_assign_pointer()
Signed-off-by: Paul E. McKenney <paulmck@linux.ibm.com>
-rw-r--r-- | include/linux/rcupdate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h index 915460ec0872..534c05d529b5 100644 --- a/include/linux/rcupdate.h +++ b/include/linux/rcupdate.h | |||
@@ -369,7 +369,7 @@ static inline void rcu_preempt_sleep_check(void) { } | |||
369 | #define rcu_assign_pointer(p, v) \ | 369 | #define rcu_assign_pointer(p, v) \ |
370 | ({ \ | 370 | ({ \ |
371 | uintptr_t _r_a_p__v = (uintptr_t)(v); \ | 371 | uintptr_t _r_a_p__v = (uintptr_t)(v); \ |
372 | rcu_check_sparse(p, __rcu); \ | 372 | rcu_check_sparse(p, __rcu); \ |
373 | \ | 373 | \ |
374 | if (__builtin_constant_p(v) && (_r_a_p__v) == (uintptr_t)NULL) \ | 374 | if (__builtin_constant_p(v) && (_r_a_p__v) == (uintptr_t)NULL) \ |
375 | WRITE_ONCE((p), (typeof(p))(_r_a_p__v)); \ | 375 | WRITE_ONCE((p), (typeof(p))(_r_a_p__v)); \ |