lockdep/selftest: Add spin_nest_lock test
authorBoqun Feng <boqun.feng@gmail.com>
Mon, 2 Nov 2020 05:37:42 +0000 (13:37 +0800)
committerPeter Zijlstra <peterz@infradead.org>
Thu, 3 Dec 2020 10:20:50 +0000 (11:20 +0100)
commite04ce676e7aa490dcf5df880592e3db5e842a9bc
treeff5ed969437455675e570795708e4e0357eab7c2
parenta2e9ae58d5042b3aa4a61f676ff6975ff3bc7bc7
lockdep/selftest: Add spin_nest_lock test

Add a self test case to test the behavior for the following case:

lock(A);
lock_nest_lock(C1, A);
lock(B);
lock_nest_lock(C2, A);

This is a reproducer for a problem[1] reported by Chris Wilson, and is
helpful to prevent this.

[1]: https://lore.kernel.org/lkml/160390684819.31966.12048967113267928793@build.alporthouse.com/

Signed-off-by: Boqun Feng <boqun.feng@gmail.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20201102053743.450459-2-boqun.feng@gmail.com
lib/locking-selftest.c