From: Thomas Gleixner <tglx@linutronix.de>
To: Sasha Levin <sasha.levin@oracle.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
Peter Zijlstra <peterz@infradead.org>
Subject: Re: timers: HARDIRQ-safe -> HARDIRQ-unsafe lock order detected
Date: Wed, 13 Jan 2016 10:05:49 +0100 (CET) [thread overview]
Message-ID: <alpine.DEB.2.11.1601130930170.3575@nanos> (raw)
In-Reply-To: <56955C0F.1090005@oracle.com>
Sasha,
On Tue, 12 Jan 2016, Sasha Levin wrote:
Cc'ing Paul, Peter
> While fuzzing with trinity inside a KVM tools guest, running the latest -next
> kernel, I've hit the following lockdep warning:
> [ 3408.474461] Possible interrupt unsafe locking scenario:
>
> [ 3408.474461]
>
> [ 3408.475239] CPU0 CPU1
>
> [ 3408.475809] ---- ----
>
> [ 3408.476380] lock(&lock->wait_lock);
>
> [ 3408.476925] local_irq_disable();
>
> [ 3408.477640] lock(&(&new_timer->it_lock)->rlock);
>
> [ 3408.478607] lock(&lock->wait_lock);
That comes from rcu_read_unlock:
rcu_read_unlock()
rcu_read_unlock_special()
...
rt_mutex_unlock(&rnp->boost_mtx);
raw_spin_lock(&boost_mtx->wait_lock);
> [ 3408.479445] <Interrupt>
>
> [ 3408.479796] lock(&(&new_timer->it_lock)->rlock);
So the task on CPU0 holds rnp->boost_mtx.wait_lock and then the interrupt
deadlocks on the timer->it_lock.
We can fix that particular issue in the posix-timer code by making the
locking symetric:
rcu_read_lock();
spin_lock_irq(timer->lock);
...
spin_unlock_irq(timer->lock);
rcu_read_unlock();
instead of:
rcu_read_lock();
spin_lock_irq(timer->lock);
rcu_read_unlock();
...
spin_unlock_irq(timer->lock);
But the question is, whether this is the only offending code path in tree. We
can avoid the hassle by making rtmutex->wait_lock irq safe.
Thoughts?
Thanks,
tglx
next prev parent reply other threads:[~2016-01-13 9:06 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-12 20:03 Sasha Levin
2016-01-12 20:18 ` Peter Zijlstra
2016-01-12 20:52 ` Paul E. McKenney
2016-01-13 9:05 ` Thomas Gleixner [this message]
2016-01-13 16:16 ` Paul E. McKenney
2016-01-14 17:43 ` Thomas Gleixner
2016-01-14 18:18 ` Paul E. McKenney
2016-01-14 19:47 ` Thomas Gleixner
2016-01-15 1:42 ` Paul E. McKenney
2016-01-15 10:03 ` Thomas Gleixner
2016-01-15 21:11 ` Paul E. McKenney
2016-01-15 22:10 ` Paul E. McKenney
2016-01-15 23:14 ` Paul E. McKenney
2016-01-29 15:27 ` Peter Zijlstra
2016-01-31 0:28 ` Paul E. McKenney
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=alpine.DEB.2.11.1601130930170.3575@nanos \
--to=tglx@linutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=paulmck@linux.vnet.ibm.com \
--cc=peterz@infradead.org \
--cc=sasha.levin@oracle.com \
/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