summaryrefslogtreecommitdiff
path: root/kernel/locking/rtmutex_api.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2023-08-04 13:53:15 +0200
committerTakashi Iwai <tiwai@suse.de>2023-08-04 13:53:15 +0200
commit4d84f763f7e137be7eeab30cc7daa9449c9cb053 (patch)
treead8869bf50680b5ee4876fbd8c7d6cd07df39f0d /kernel/locking/rtmutex_api.c
parent788449ae57f4273111b779bbcaad552b67f517d5 (diff)
parentf803ec63686dec863a33cad87218d7d99c4b5e92 (diff)
Merge tag 'asoc-fix-v6.5-rc4' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fix for v6.5 Not really a fix, but rather a licensing update for the fsl_micfil driver.
Diffstat (limited to 'kernel/locking/rtmutex_api.c')
-rw-r--r--kernel/locking/rtmutex_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/locking/rtmutex_api.c b/kernel/locking/rtmutex_api.c
index cb9fdff76a8a..a6974d044593 100644
--- a/kernel/locking/rtmutex_api.c
+++ b/kernel/locking/rtmutex_api.c
@@ -459,7 +459,7 @@ void __sched rt_mutex_adjust_pi(struct task_struct *task)
raw_spin_lock_irqsave(&task->pi_lock, flags);
waiter = task->pi_blocked_on;
- if (!waiter || rt_mutex_waiter_equal(waiter, task_to_waiter(task))) {
+ if (!waiter || rt_waiter_node_equal(&waiter->tree, task_to_waiter_node(task))) {
raw_spin_unlock_irqrestore(&task->pi_lock, flags);
return;
}