mmap_lock: Change trace and locking order
authorLiam R. Howlett <Liam.Howlett@oracle.com>
Fri, 3 Sep 2021 01:01:21 +0000 (21:01 -0400)
committerLiam R. Howlett <Liam.Howlett@oracle.com>
Fri, 3 Sep 2021 02:39:08 +0000 (22:39 -0400)
Print to the trace log before releasing the lock to avoid racing with
other trace log printers of the same lock type.

Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Suggested-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
include/linux/mmap_lock.h

index 0540f0156f58c7ae170f47867e9b88fb59592459..b179f1e3541a29c30487977f5ca45c2acc7291ce 100644 (file)
@@ -101,14 +101,14 @@ static inline bool mmap_write_trylock(struct mm_struct *mm)
 
 static inline void mmap_write_unlock(struct mm_struct *mm)
 {
-       up_write(&mm->mmap_lock);
        __mmap_lock_trace_released(mm, true);
+       up_write(&mm->mmap_lock);
 }
 
 static inline void mmap_write_downgrade(struct mm_struct *mm)
 {
-       downgrade_write(&mm->mmap_lock);
        __mmap_lock_trace_acquire_returned(mm, false, true);
+       downgrade_write(&mm->mmap_lock);
 }
 
 static inline void mmap_read_lock(struct mm_struct *mm)
@@ -140,8 +140,8 @@ static inline bool mmap_read_trylock(struct mm_struct *mm)
 
 static inline void mmap_read_unlock(struct mm_struct *mm)
 {
-       up_read(&mm->mmap_lock);
        __mmap_lock_trace_released(mm, false);
+       up_read(&mm->mmap_lock);
 }
 
 static inline bool mmap_read_trylock_non_owner(struct mm_struct *mm)
@@ -155,8 +155,8 @@ static inline bool mmap_read_trylock_non_owner(struct mm_struct *mm)
 
 static inline void mmap_read_unlock_non_owner(struct mm_struct *mm)
 {
-       up_read_non_owner(&mm->mmap_lock);
        __mmap_lock_trace_released(mm, false);
+       up_read_non_owner(&mm->mmap_lock);
 }
 
 static inline void mmap_assert_locked(struct mm_struct *mm)