Skip to content

Commit 0c282b0

Browse files
Madhuparna BhowmikChristian Brauner
authored andcommitted
fork: Use RCU_INIT_POINTER() instead of rcu_access_pointer()
Use RCU_INIT_POINTER() instead of rcu_access_pointer() in copy_sighand(). Suggested-by: Oleg Nesterov <oleg@redhat.com> Signed-off-by: Madhuparna Bhowmik <madhuparnabhowmik10@gmail.com> Acked-by: Oleg Nesterov <oleg@redhat.com> Acked-by: Christian Brauner <christian.brauner@ubuntu.com> [christian.brauner@ubuntu.com: edit commit message] Link: https://lore.kernel.org/r/20200127175821.10833-1-madhuparnabhowmik10@gmail.com Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
1 parent bb6d3fb commit 0c282b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/fork.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1508,7 +1508,7 @@ static int copy_sighand(unsigned long clone_flags, struct task_struct *tsk)
15081508
return 0;
15091509
}
15101510
sig = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
1511-
rcu_assign_pointer(tsk->sighand, sig);
1511+
RCU_INIT_POINTER(tsk->sighand, sig);
15121512
if (!sig)
15131513
return -ENOMEM;
15141514

0 commit comments

Comments
 (0)