diff options
Diffstat (limited to 'kernel/locking/rtmutex_common.h')
| -rw-r--r-- | kernel/locking/rtmutex_common.h | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/kernel/locking/rtmutex_common.h b/kernel/locking/rtmutex_common.h index 4f5f83c7d2d3..e317e1cbb3eb 100644 --- a/kernel/locking/rtmutex_common.h +++ b/kernel/locking/rtmutex_common.h @@ -75,8 +75,9 @@ task_top_pi_waiter(struct task_struct *p)  static inline struct task_struct *rt_mutex_owner(struct rt_mutex *lock)  { -	return (struct task_struct *) -		((unsigned long)lock->owner & ~RT_MUTEX_OWNER_MASKALL); +	unsigned long owner = (unsigned long) READ_ONCE(lock->owner); + +	return (struct task_struct *) (owner & ~RT_MUTEX_OWNER_MASKALL);  }  /* | 
