diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2012-05-16 16:31:38 -0700 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2012-07-02 12:34:23 -0700 |
commit | e5c1f444d28b1a9eaf9c3927041db0414f684ef4 (patch) | |
tree | 2651cd625602d38b19301cc35e276f7e6502a2e6 | |
parent | d1b88eb9e3bccaa43fb5d1bde1cbe210b3434731 (diff) | |
download | op-kernel-dev-e5c1f444d28b1a9eaf9c3927041db0414f684ef4.zip op-kernel-dev-e5c1f444d28b1a9eaf9c3927041db0414f684ef4.tar.gz |
key: Remove extraneous parentheses from rcu_assign_keypointer()
This commit removes the extraneous parentheses from rcu_assign_keypointer()
so that rcu_assign_pointer() can be wrapped in do-while. It also wraps
rcu_assign_keypointer() in a do-while and parenthesizes its final argument,
as suggested by David Howells.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
-rw-r--r-- | include/linux/key.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/key.h b/include/linux/key.h index 4cd22ed..cef3b31 100644 --- a/include/linux/key.h +++ b/include/linux/key.h @@ -303,7 +303,9 @@ static inline bool key_is_instantiated(const struct key *key) rwsem_is_locked(&((struct key *)(KEY))->sem))) #define rcu_assign_keypointer(KEY, PAYLOAD) \ - (rcu_assign_pointer((KEY)->payload.rcudata, PAYLOAD)) +do { \ + rcu_assign_pointer((KEY)->payload.rcudata, (PAYLOAD)); \ +} while (0) #ifdef CONFIG_SYSCTL extern ctl_table key_sysctls[]; |