projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
241ec63
)
mm/mmap.c: use mmap_assert_write_locked() instead of open coding it
author
Rolf Eike Beer
<eb@emlix.com>
Fri, 29 Apr 2022 06:16:11 +0000
(23:16 -0700)
committer
akpm
<akpm@linux-foundation.org>
Fri, 29 Apr 2022 06:16:11 +0000
(23:16 -0700)
In case the lock is actually not held at this point.
Link:
https://lkml.kernel.org/r/5827758.TJ1SttVevJ@mobilepool36.emlix.com
Signed-off-by: Rolf Eike Beer <eb@emlix.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/mmap.c
patch
|
blob
|
history
diff --git
a/mm/mmap.c
b/mm/mmap.c
index 313b57d55a634a3df997a3c60bfb6d8a29df41ed..042f01ec02fe0b862606b29fa2cf71a764cd3a3a 100644
(file)
--- a/
mm/mmap.c
+++ b/
mm/mmap.c
@@
-3553,7
+3553,7
@@
int mm_take_all_locks(struct mm_struct *mm)
struct vm_area_struct *vma;
struct anon_vma_chain *avc;
-
BUG_ON(mmap_read_trylock(mm)
);
+
mmap_assert_write_locked(mm
);
mutex_lock(&mm_all_locks_mutex);
@@
-3633,7
+3633,7
@@
void mm_drop_all_locks(struct mm_struct *mm)
struct vm_area_struct *vma;
struct anon_vma_chain *avc;
-
BUG_ON(mmap_read_trylock(mm)
);
+
mmap_assert_write_locked(mm
);
BUG_ON(!mutex_is_locked(&mm_all_locks_mutex));
for (vma = mm->mmap; vma; vma = vma->vm_next) {