]> git.karo-electronics.de Git - karo-tx-linux.git/commit
rcu_sync: Add CONFIG_PROVE_RCU checks
authorOleg Nesterov <oleg@redhat.com>
Fri, 21 Aug 2015 17:42:50 +0000 (19:42 +0200)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Tue, 6 Oct 2015 18:25:16 +0000 (11:25 -0700)
commit3a518b76af7bb411efe6dd090fbf098e29accb2e
tree784edc06760ddaa84fbdfdcfe3ea52c9fb872fca
parent82e8c565be8a72957570d7da8dd9b441db7bb648
rcu_sync: Add CONFIG_PROVE_RCU checks

This commit validates that the caller of rcu_sync_is_idle() holds the
corresponding type of RCU read-side lock, but only in kernels built
with CONFIG_PROVE_RCU=y.  This validation is carried out via a new
rcu_sync_ops->held() method that is checked within rcu_sync_is_idle().

Note that although this does add code to the fast path, it only does so
in kernels built with CONFIG_PROVE_RCU=y.

Suggested-by: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
include/linux/rcu_sync.h
kernel/rcu/sync.c