Merge branch 'locking/urgent' into locking/core

Pick up the spin loop condition fix.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
Thomas Gleixner 2021-12-18 10:57:03 +01:00
commit f16cc980d6

View File

@ -1383,7 +1383,7 @@ static bool rtmutex_spin_on_owner(struct rt_mutex_base *lock,
* - the VCPU on which owner runs is preempted
*/
if (!owner_on_cpu(owner) || need_resched() ||
rt_mutex_waiter_is_top_waiter(lock, waiter)) {
!rt_mutex_waiter_is_top_waiter(lock, waiter)) {
res = false;
break;
}