From: Boqun Feng <boqun.feng@gmail.com>
To: "Paul E. McKenney" <paulmck@kernel.org>
Cc: David Woodhouse <dwmw2@infradead.org>,
Paolo Bonzini <pbonzini@redhat.com>,
linux-kernel@vger.kernel.org, kvm@vger.kernel.org,
seanjc@google.com, Joel Fernandes <joel@joelfernandes.org>,
Matthew Wilcox <willy@infradead.org>,
Josh Triplett <josh@joshtriplett.org>,
rcu@vger.kernel.org, Michal Luczaj <mhal@rbox.co>,
Peter Zijlstra <peterz@infradead.org>
Subject: Re: [PATCH] Documentation: kvm: fix SRCU locking order docs
Date: Thu, 12 Jan 2023 23:18:51 -0800 [thread overview]
Message-ID: <Y8EF24o932lcshKs@boqun-archlinux> (raw)
In-Reply-To: <20230112152048.GJ4028633@paulmck-ThinkPad-P17-Gen-1>
On Thu, Jan 12, 2023 at 07:20:48AM -0800, Paul E. McKenney wrote:
> On Thu, Jan 12, 2023 at 08:24:16AM +0000, David Woodhouse wrote:
> > On Wed, 2023-01-11 at 13:30 -0500, Paolo Bonzini wrote:
> > >
> > > +- ``synchronize_srcu(&kvm->srcu)`` is called inside critical sections
> > > + for kvm->lock, vcpu->mutex and kvm->slots_lock. These locks _cannot_
> > > + be taken inside a kvm->srcu read-side critical section; that is, the
> > > + following is broken::
> > > +
> > > + srcu_read_lock(&kvm->srcu);
> > > + mutex_lock(&kvm->slots_lock);
> > > +
> >
> > "Don't tell me. Tell lockdep!"
> >
> > Did we conclude in
> > https://lore.kernel.org/kvm/122f38e724aae9ae8ab474233da1ba19760c20d2.camel@infradead.org/
> > that lockdep *could* be clever enough to catch a violation of this rule
> > by itself?
> >
> > The general case of the rule would be that 'if mutex A is taken in a
> > read-section for SCRU B, then any synchronize_srcu(B) while mutex A is
> > held shall be verboten'. And vice versa.
> >
> > If we can make lockdep catch it automatically, yay!
>
> Unfortunately, lockdep needs to see a writer to complain, and that patch
> just adds a reader. And adding that writer would make lockdep complain
> about things that are perfectly fine. It should be possible to make
> lockdep catch this sort of thing, but from what I can see, doing so
> requires modifications to lockdep itself.
>
Please see if the follow patchset works:
https://lore.kernel.org/lkml/20230113065955.815667-1-boqun.feng@gmail.com
"I have been called. I must answer. Always." ;-)
> > If not, I'm inclined to suggest that we have explicit wrappers of our
> > own for kvm_mutex_lock() which will do the check directly.
>
> This does allow much more wiggle room. For example, you guys could decide
> to let lockdep complain about things that other SRCU users want to do.
> For completeness, here is one such scenario:
>
> CPU 0: read_lock(&rla); srcu_read_lock(&srcua); ...
>
> CPU 1: srcu_read_lock(&srcua); read_lock(&rla); ...
>
> CPU 2: synchronize_srcu(&srcua);
>
> CPU 3: write_lock(&rla); ...
>
> If you guys are OK with lockdep complaining about this, then doing a
Actually lockdep won't complain about this, since srcu_read_lock() is
always a recursive read lock, so it won't break other srcu_read_lock().
FWIW if CPU2 or CPU3 does
write_lock(&rla);
synchronize_srcu(&srcua);
it's a deadlock (with CPU 1)
Regards,
Boqun
> currently mythical rcu_write_acquire()/rcu_write_release() pair around
> your calls to synchronize_srcu() should catch the other issue.
>
> And probably break something else, but you have to start somewhere! ;-)
>
> Thanx, Paul
next prev parent reply other threads:[~2023-01-13 7:26 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-11 18:30 [PATCH] Documentation: kvm: fix SRCU locking order docs Paolo Bonzini
2023-01-12 8:24 ` David Woodhouse
2023-01-12 15:20 ` Paul E. McKenney
2023-01-13 7:18 ` Boqun Feng [this message]
2023-01-13 9:20 ` Paolo Bonzini
2023-01-13 10:33 ` David Woodhouse
2023-01-13 11:03 ` David Woodhouse
2023-01-13 22:26 ` Michal Luczaj
2023-01-14 0:02 ` Boqun Feng
2023-01-16 17:37 ` Paolo Bonzini
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=Y8EF24o932lcshKs@boqun-archlinux \
--to=boqun.feng@gmail.com \
--cc=dwmw2@infradead.org \
--cc=joel@joelfernandes.org \
--cc=josh@joshtriplett.org \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mhal@rbox.co \
--cc=paulmck@kernel.org \
--cc=pbonzini@redhat.com \
--cc=peterz@infradead.org \
--cc=rcu@vger.kernel.org \
--cc=seanjc@google.com \
--cc=willy@infradead.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