diff options
author | Paul E. McKenney <paulmck@linux.ibm.com> | 2019-05-22 10:07:45 -0700 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.ibm.com> | 2019-06-13 15:38:33 -0700 |
commit | b3119cde1d70d6df1574b9f26d8e087e8e5116b4 (patch) | |
tree | a8872aae107fd6de9a481a114d9116ae24274480 /include/linux/rcupdate.h | |
parent | 96050c68be33edef18800ad6748f61f81db81a20 (diff) | |
download | lwn-b3119cde1d70d6df1574b9f26d8e087e8e5116b4.tar.gz lwn-b3119cde1d70d6df1574b9f26d8e087e8e5116b4.zip |
rcu: Fix irritating whitespace error in rcu_assign_pointer()
Signed-off-by: Paul E. McKenney <paulmck@linux.ibm.com>
Diffstat (limited to 'include/linux/rcupdate.h')
-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) { } #define rcu_assign_pointer(p, v) \ ({ \ uintptr_t _r_a_p__v = (uintptr_t)(v); \ - rcu_check_sparse(p, __rcu); \ + rcu_check_sparse(p, __rcu); \ \ if (__builtin_constant_p(v) && (_r_a_p__v) == (uintptr_t)NULL) \ WRITE_ONCE((p), (typeof(p))(_r_a_p__v)); \ |