From: Waiman Long <longman@redhat.com>
To: Wander Lairson Costa <wander@redhat.com>,
Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@redhat.com>, Will Deacon <will@kernel.org>,
Boqun Feng <boqun.feng@gmail.com>,
"open list:LOCKING PRIMITIVES" <linux-kernel@vger.kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>,
Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Subject: Re: [PATCH] rtmutex: ensure we wake up the top waiter
Date: Tue, 17 Jan 2023 14:40:22 -0500 [thread overview]
Message-ID: <c7cae935-c378-24bf-7e9c-bbf5feb4185a@redhat.com> (raw)
In-Reply-To: <23a15414-927c-ba0d-eb6a-58f6191ce17b@redhat.com>
On 1/17/23 14:32, Waiman Long wrote:
> On 1/17/23 12:26, Wander Lairson Costa wrote:
>> In task_blocked_on_lock() we save the owner, release the wait_lock and
>> call rt_mutex_adjust_prio_chain(). Before we acquire the wait_lock
>> again, the owner may release the lock and deboost.
> Are you referring to task_blocks_on_rt_mutex(), not
> task_blocked_on_lock()?
>>
>> rt_mutex_adjust_prio_chain() acquires the wait_lock. In the requeue
>> phase, waiter may be initially in the top of the queue, but after
>> dequeued and requeued it may no longer be true.
>>
>> This scenario ends up waking the wrong task, which will verify it is no
>> the top waiter and comes back to sleep. Now we have a situation in which
>> no task is holding the lock but no one acquires it.
>>
>> We can reproduce the bug in PREEMPT_RT with stress-ng:
>>
>> while true; do
>> stress-ng --sched deadline --sched-period 1000000000 \
>> --sched-runtime 800000000 --sched-deadline \
>> 1000000000 --mmapfork 23 -t 20
>> done
>>
>> Signed-off-by: Wander Lairson Costa <wander@redhat.com>
>> ---
>> kernel/locking/rtmutex.c | 5 +++--
>> 1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/kernel/locking/rtmutex.c b/kernel/locking/rtmutex.c
>> index 010cf4e6d0b8..728f434de2bb 100644
>> --- a/kernel/locking/rtmutex.c
>> +++ b/kernel/locking/rtmutex.c
>> @@ -901,8 +901,9 @@ static int __sched
>> rt_mutex_adjust_prio_chain(struct task_struct *task,
>> * then we need to wake the new top waiter up to try
>> * to get the lock.
>> */
>> - if (prerequeue_top_waiter != rt_mutex_top_waiter(lock))
>> - wake_up_state(waiter->task, waiter->wake_state);
>> + top_waiter = rt_mutex_top_waiter(lock);
>> + if (prerequeue_top_waiter != top_waiter)
>> + wake_up_state(top_waiter->task, top_waiter->wake_state);
>> raw_spin_unlock_irq(&lock->wait_lock);
>> return 0;
>> }
>
> I would say that if a rt_mutex has no owner but have waiters, we
> should always wake up the top waiter whether or not it is the current
> waiter. So what is the result of the stress-ng run above? Is it a
> hang? It is not clear from your patch description.
BTW, if it is a hang. What arch has this problem? x86 or arm64? There is
a recent report of some rt_mutex locking issue in arm64, I believe. I
don't know if it will be related. So it is important to know in what
arch you see this problem.
Cheers,
Longman
next prev parent reply other threads:[~2023-01-17 21:22 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-17 17:26 Wander Lairson Costa
2023-01-17 19:32 ` Waiman Long
2023-01-17 19:40 ` Waiman Long [this message]
2023-01-17 20:01 ` Wander Lairson Costa
2023-01-17 20:00 ` Wander Lairson Costa
2023-01-18 0:05 ` Thomas Gleixner
2023-01-18 18:49 ` Wander Lairson Costa
2023-01-19 20:53 ` Thomas Gleixner
2023-01-31 17:46 ` Wander Lairson Costa
2023-01-31 17:53 ` Wander Lairson Costa
2023-02-02 7:48 ` Thomas Gleixner
2023-02-02 11:20 ` Wander Lairson Costa
2023-02-06 14:12 ` [tip: locking/urgent] rtmutex: Ensure that the top waiter is always woken up tip-bot2 for Wander Lairson Costa
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c7cae935-c378-24bf-7e9c-bbf5feb4185a@redhat.com \
--to=longman@redhat.com \
--cc=bigeasy@linutronix.de \
--cc=boqun.feng@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=tglx@linutronix.de \
--cc=wander@redhat.com \
--cc=will@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome