Skip to content

Commit a60a574

Browse files
committed
security/safesetid: Replace rcu_swap_protected() with rcu_replace_pointer()
This commit replaces the use of rcu_swap_protected() with the more intuitively appealing rcu_replace_pointer() as a step towards removing rcu_swap_protected(). Link: https://lore.kernel.org/lkml/CAHk-=wiAsJLw1egFEE=Z7-GGtM6wcvtyytXZA1+BHqta4gg6Hw@mail.gmail.com/ Reported-by: Linus Torvalds <[email protected]> Reported-by: Reported-by: kbuild test robot <[email protected]> [ paulmck: From rcu_replace() to rcu_replace_pointer() per Ingo Molnar. ] Signed-off-by: Paul E. McKenney <[email protected]> Cc: Micah Morton <[email protected]> Cc: James Morris <[email protected]> Cc: "Serge E. Hallyn" <[email protected]> Cc: <[email protected]>
1 parent 445d374 commit a60a574

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

security/safesetid/securityfs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ static ssize_t handle_policy_update(struct file *file,
179179
* doesn't currently exist, just use a spinlock for now.
180180
*/
181181
mutex_lock(&policy_update_lock);
182-
rcu_swap_protected(safesetid_setuid_rules, pol,
183-
lockdep_is_held(&policy_update_lock));
182+
pol = rcu_replace_pointer(safesetid_setuid_rules, pol,
183+
lockdep_is_held(&policy_update_lock));
184184
mutex_unlock(&policy_update_lock);
185185
err = len;
186186

0 commit comments

Comments
 (0)