diff options
Diffstat (limited to 'kernel/locking/rtmutex_api.c')
| -rw-r--r-- | kernel/locking/rtmutex_api.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/locking/rtmutex_api.c b/kernel/locking/rtmutex_api.c index 900220941caa..cb9fdff76a8a 100644 --- a/kernel/locking/rtmutex_api.c +++ b/kernel/locking/rtmutex_api.c @@ -267,7 +267,7 @@ void __sched rt_mutex_init_proxy_locked(struct rt_mutex_base *lock,  void __sched rt_mutex_proxy_unlock(struct rt_mutex_base *lock)  {  	debug_rt_mutex_proxy_unlock(lock); -	rt_mutex_set_owner(lock, NULL); +	rt_mutex_clear_owner(lock);  }  /** @@ -382,7 +382,7 @@ int __sched rt_mutex_wait_proxy_lock(struct rt_mutex_base *lock,  	 * try_to_take_rt_mutex() sets the waiter bit unconditionally. We might  	 * have to fix that up.  	 */ -	fixup_rt_mutex_waiters(lock); +	fixup_rt_mutex_waiters(lock, true);  	raw_spin_unlock_irq(&lock->wait_lock);  	return ret; @@ -438,7 +438,7 @@ bool __sched rt_mutex_cleanup_proxy_lock(struct rt_mutex_base *lock,  	 * try_to_take_rt_mutex() sets the waiter bit unconditionally. We might  	 * have to fix that up.  	 */ -	fixup_rt_mutex_waiters(lock); +	fixup_rt_mutex_waiters(lock, false);  	raw_spin_unlock_irq(&lock->wait_lock);  | 
