Commit 987717e5 authored by Andrea Arcangeli's avatar Andrea Arcangeli Committed by Linus Torvalds

mm: change mm_update_next_owner() to update mm->owner with WRITE_ONCE

The RCU reader uses rcu_dereference() inside rcu_read_lock critical
sections, so the writer shall use WRITE_ONCE.  Just a cleanup, we still
rely on gcc to emit atomic writes in other places.

Link: http://lkml.kernel.org/r/20190325225636.11635-3-aarcange@redhat.comSigned-off-by: default avatarAndrea Arcangeli <aarcange@redhat.com>
Reviewed-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Cc: Hugh Dickins <hughd@google.com>
Cc: Jann Horn <jannh@google.com>
Cc: Jason Gunthorpe <jgg@mellanox.com>
Cc: "Kirill A . Shutemov" <kirill.shutemov@linux.intel.com>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Mike Kravetz <mike.kravetz@oracle.com>
Cc: Mike Rapoport <rppt@linux.vnet.ibm.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Peter Xu <peterx@redhat.com>
Cc: zhong jiang <zhongjiang@huawei.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c3f3ce04
...@@ -422,7 +422,7 @@ void mm_update_next_owner(struct mm_struct *mm) ...@@ -422,7 +422,7 @@ void mm_update_next_owner(struct mm_struct *mm)
* freed task structure. * freed task structure.
*/ */
if (atomic_read(&mm->mm_users) <= 1) { if (atomic_read(&mm->mm_users) <= 1) {
mm->owner = NULL; WRITE_ONCE(mm->owner, NULL);
return; return;
} }
...@@ -462,7 +462,7 @@ void mm_update_next_owner(struct mm_struct *mm) ...@@ -462,7 +462,7 @@ void mm_update_next_owner(struct mm_struct *mm)
* most likely racing with swapoff (try_to_unuse()) or /proc or * most likely racing with swapoff (try_to_unuse()) or /proc or
* ptrace or page migration (get_task_mm()). Mark owner as NULL. * ptrace or page migration (get_task_mm()). Mark owner as NULL.
*/ */
mm->owner = NULL; WRITE_ONCE(mm->owner, NULL);
return; return;
assign_new_owner: assign_new_owner:
...@@ -483,7 +483,7 @@ void mm_update_next_owner(struct mm_struct *mm) ...@@ -483,7 +483,7 @@ void mm_update_next_owner(struct mm_struct *mm)
put_task_struct(c); put_task_struct(c);
goto retry; goto retry;
} }
mm->owner = c; WRITE_ONCE(mm->owner, c);
task_unlock(c); task_unlock(c);
put_task_struct(c); put_task_struct(c);
} }
......
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