diff options
author | Paul E. McKenney <paulmck@linux.ibm.com> | 2019-05-22 19:07:45 +0200 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.ibm.com> | 2019-06-14 00:38:33 +0200 |
commit | b3119cde1d70d6df1574b9f26d8e087e8e5116b4 (patch) | |
tree | a8872aae107fd6de9a481a114d9116ae24274480 /include | |
parent | rcu: Upgrade sync_exp_work_done() to smp_mb() (diff) | |
download | linux-b3119cde1d70d6df1574b9f26d8e087e8e5116b4.tar.xz linux-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')
-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)); \ |