]> Git Repo - linux.git/commitdiff
locking/mutex: Use mutex flags macro instead of hard code
authorMukesh Ojha <[email protected]>
Wed, 31 Jul 2019 15:05:04 +0000 (20:35 +0530)
committerPeter Zijlstra <[email protected]>
Tue, 6 Aug 2019 10:49:16 +0000 (12:49 +0200)
Use the mutex flag macro instead of hard code value inside
__mutex_owner().

Signed-off-by: Mukesh Ojha <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Cc: [email protected]
Cc: [email protected]
Link: https://lkml.kernel.org/r/[email protected]
kernel/locking/mutex.c

index ac4929f1e085e7dd4fcb4bc455a7b936b4420289..b4bcb0236d7a15297d425648fdbf598bf8ffc684 100644 (file)
@@ -85,7 +85,7 @@ EXPORT_SYMBOL(__mutex_init);
  */
 static inline struct task_struct *__mutex_owner(struct mutex *lock)
 {
-       return (struct task_struct *)(atomic_long_read(&lock->owner) & ~0x07);
+       return (struct task_struct *)(atomic_long_read(&lock->owner) & ~MUTEX_FLAGS);
 }
 
 static inline struct task_struct *__owner_task(unsigned long owner)
This page took 0.054594 seconds and 4 git commands to generate.