locking/mutex: Use mutex flags macro instead of hard code
authorMukesh Ojha <mojha@codeaurora.org>
Wed, 31 Jul 2019 15:05:04 +0000 (20:35 +0530)
committerPeter Zijlstra <peterz@infradead.org>
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 <mojha@codeaurora.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: mingo@redhat.com
Cc: will@kernel.org
Link: https://lkml.kernel.org/r/1564585504-3543-2-git-send-email-mojha@codeaurora.org
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)