Commit b3119cde authored by Paul E. McKenney's avatar Paul E. McKenney

rcu: Fix irritating whitespace error in rcu_assign_pointer()

Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.ibm.com>
parent 96050c68
......@@ -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)); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment