From: Boqun Feng <boqun.feng@gmail.com>
To: linux-kernel@vger.kernel.org
Cc: Ingo Molnar <mingo@kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
Gautham R Shenoy <ego@linux.vnet.ibm.com>,
Byungchul Park <byungchul.park@lge.com>
Subject: Re: [RFC tip/locking v2 00/13] lockdep: Support deadlock detection for recursive read locks
Date: Wed, 6 Sep 2017 16:49:20 +0800 [thread overview]
Message-ID: <20170906084920.GU11771@tardis> (raw)
In-Reply-To: <20170906082824.16078-1-boqun.feng@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2019 bytes --]
On Wed, Sep 06, 2017 at 04:28:11PM +0800, Boqun Feng wrote:
> Hi Ingo and Peter,
>
> This is V2 for recursive read lock support in lockdep. I fix several
> bugs in V1 and also add irq inversion detection support for recursive
> read locks.
>
> V1: https://marc.info/?l=linux-kernel&m=150393341825453
>
>
> As Peter pointed out:
>
> https://marc.info/?l=linux-kernel&m=150349072023540
>
> The lockdep current has a limit support for recursive read locks, the
> deadlock case as follow could not be detected:
>
> read_lock(A);
> lock(B);
> lock(B);
> write_lock(A);
>
> I got some inspiration from Gautham R Shenoy:
>
> https://lwn.net/Articles/332801/
>
> , and came up with this series.
>
> The basic idea is:
>
> * Add recursive read locks into the graph
>
> * Classify dependencies into --(RR)-->, --(NR)-->, --(RN)-->,
> --(NN)-->, where R stands for recursive read lock, N stands for
> other locks(i.e. non-recursive read locks and write locks).
>
> * Define strong dependency paths as the paths of dependencies
> don't have two adjacent dependencies as --(*R)--> and --(R*)-->.
>
> * Extend __bfs() to only traverse on strong dependency paths.
>
> * If __bfs() finds a strong dependency circle, then a deadlock is
> reported.
>
> The whole series is based on current master branch of Linus' tree:
>
> e7d0c41ecc2e ("Merge tag 'devprop-4.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm")
>
> , and I also put it at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/boqun/linux.git arr-rfc-v2
Hmm.. should revert
d82fed752942 ("locking/lockdep/selftests: Fix mixed read-write ABBA tests")
for testing, as it is a work around because of we had limit support for
recursive read lock before.
I put a branch with that reverted at:
git://git.kernel.org/pub/scm/linux/kernel/git/boqun/linux.git arr-rfc-v2a
Selftest passed for that branch, now run it for more time.
Regards,
Boqun
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
prev parent reply other threads:[~2017-09-06 8:48 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-06 8:28 Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 01/13] lockdep: Demagic the return value of BFS Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 02/13] lockdep: Make __bfs() visit every dependency rather than every class until a match Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 03/13] lockdep: Change the meanings of LOCK_{USED_IN, ENABLED}_*_{READ} Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 04/13] lockdep: Introduce lock_list::dep Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 05/13] lockdep: Extend __bfs() to work with multiple kinds of dependencies Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 06/13] lockdep: Adjust check_redundant() for recursive read change Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 07/13] lockdep: Support deadlock detection for recursive read in check_noncircular() Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 08/13] lockdep: Fix recursive read lock related safe->unsafe detection Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 09/13] lockdep: Add recursive read locks into dependency graph Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 10/13] lockdep/selftest: Add a R-L/L-W test case specific to chain cache behavior Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 11/13] lockdep: Take read/write status in consideration when generate chainkey Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 12/13] lockdep/selftest: Unleash irq_read_recursion2 and add more Boqun Feng
2017-09-06 8:28 ` [RFC tip/locking v2 13/13] lockdep/selftest: Add more recursive read related test cases Boqun Feng
2017-09-06 8:49 ` Boqun Feng [this message]
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=20170906084920.GU11771@tardis \
--to=boqun.feng@gmail.com \
--cc=byungchul.park@lge.com \
--cc=ego@linux.vnet.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=peterz@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
all inboxes | Powered by JetHome®