25 Feb, 2010
1 commit
- 
Inspection is proving insufficient to catch all RCU misuses, 
 which is understandable given that rcu_dereference() might be
 protected by any of four different flavors of RCU (RCU, RCU-bh,
 RCU-sched, and SRCU), and might also/instead be protected by any
 of a number of locking primitives. It is therefore time to
 enlist the aid of lockdep.This set of patches is inspired by earlier work by Peter 
 Zijlstra and Thomas Gleixner, and takes the following approach:o Set up separate lockdep classes for RCU, RCU-bh, and RCU-sched. o Set up separate lockdep classes for each instance of SRCU. o Create primitives that check for being in an RCU read-side 
 critical section. These return exact answers if lockdep is
 fully enabled, but if unsure, report being in an RCU read-side
 critical section. (We want to avoid false positives!)
 The primitives are:For RCU: rcu_read_lock_held(void) For RCU-bh: rcu_read_lock_bh_held(void) For RCU-sched: rcu_read_lock_sched_held(void) For SRCU: srcu_read_lock_held(struct srcu_struct *sp) o Add rcu_dereference_check(), which takes a second argument 
 in which one places a boolean expression based on the above
 primitives and/or lockdep_is_held().o A new kernel configuration parameter, CONFIG_PROVE_RCU, enables 
 rcu_dereference_check(). This depends on CONFIG_PROVE_LOCKING,
 and should be quite helpful during the transition period while
 CONFIG_PROVE_RCU-unaware patches are in flight.The existing rcu_dereference() primitive does no checking, but 
 upcoming patches will change that.Signed-off-by: Paul E. McKenney 
 Cc: laijs@cn.fujitsu.com
 Cc: dipankar@in.ibm.com
 Cc: mathieu.desnoyers@polymtl.ca
 Cc: josh@joshtriplett.org
 Cc: dvhltc@us.ibm.com
 Cc: niv@us.ibm.com
 Cc: peterz@infradead.org
 Cc: rostedt@goodmis.org
 Cc: Valdis.Kletnieks@vt.edu
 Cc: dhowells@redhat.com
 LKML-Reference:
 Signed-off-by: Ingo Molnar
16 Jan, 2010
1 commit
- 
Rename local variable "i" in rcu_init() to avoid conflict with 
 RCU_INIT_FLAVOR(), restrict the scope of RCU_TREE_NONCORE, and
 make __synchronize_srcu() static.Signed-off-by: Paul E. McKenney 
 Cc: laijs@cn.fujitsu.com
 Cc: dipankar@in.ibm.com
 Cc: mathieu.desnoyers@polymtl.ca
 Cc: josh@joshtriplett.org
 Cc: dvhltc@us.ibm.com
 Cc: niv@us.ibm.com
 Cc: peterz@infradead.org
 Cc: rostedt@goodmis.org
 Cc: Valdis.Kletnieks@vt.edu
 Cc: dhowells@redhat.com
 LKML-Reference:
 Signed-off-by: Ingo Molnar
26 Oct, 2009
1 commit
- 
This patch creates a synchronize_srcu_expedited() that uses 
 synchronize_sched_expedited() where synchronize_srcu()
 uses synchronize_sched(). The synchronize_srcu() and
 synchronize_srcu_expedited() functions become one-liners that
 pass synchronize_sched() or synchronize_sched_expedited(),
 repectively, to a new __synchronize_srcu() function.While in the file, move the EXPORT_SYMBOL_GPL()s to immediately 
 follow the corresponding functions.Requested-by: Avi Kivity 
 Tested-by: Marcelo Tosatti
 Signed-off-by: Paul E. McKenney
 Acked-by: Josh Triplett
 Reviewed-by: Lai Jiangshan
 Cc: dipankar@in.ibm.com
 Cc: mathieu.desnoyers@polymtl.ca
 Cc: dvhltc@us.ibm.com
 Cc: niv@us.ibm.com
 Cc: peterz@infradead.org
 Cc: rostedt@goodmis.org
 Cc: Valdis.Kletnieks@vt.edu
 Cc: dhowells@redhat.com
 Cc: avi@redhat.com
 LKML-Reference:
 Signed-off-by: Ingo Molnar
07 Feb, 2008
1 commit
- 
Make the needlessly global srcu_readers_active() static. Signed-off-by: Adrian Bunk 
 Cc: "Paul E. McKenney"
 Signed-off-by: Andrew Morton
 Signed-off-by: Linus Torvalds
04 Oct, 2006
2 commits
- 
Currently the init_srcu_struct() routine has no way to report out-of-memory 
 errors. This patch (as761) makes it return -ENOMEM when the per-cpu data
 allocation fails.The patch also makes srcu_init_notifier_head() report a BUG if a notifier 
 head can't be initialized. Perhaps it should return -ENOMEM instead, but
 in the most likely cases where this might occur I don't think any recovery
 is possible. Notifier chains generally are not created dynamically.[akpm@osdl.org: avoid statement-with-side-effect in macro] 
 Signed-off-by: Alan Stern
 Acked-by: Paul E. McKenney
 Signed-off-by: Andrew Morton
 Signed-off-by: Linus Torvalds
- 
Updated patch adding a variant of RCU that permits sleeping in read-side 
 critical sections. SRCU is as follows:o Each use of SRCU creates its own srcu_struct, and each 
 srcu_struct has its own set of grace periods. This is
 critical, as it prevents one subsystem with a blocking
 reader from holding up SRCU grace periods for other
 subsystems.o The SRCU primitives (srcu_read_lock(), srcu_read_unlock(), 
 and synchronize_srcu()) all take a pointer to a srcu_struct.o The SRCU primitives must be called from process context. o srcu_read_lock() returns an int that must be passed to 
 the matching srcu_read_unlock(). Realtime RCU avoids the
 need for this by storing the state in the task struct,
 but SRCU needs to allow a given code path to pass through
 multiple SRCU domains -- storing state in the task struct
 would therefore require either arbitrary space in the
 task struct or arbitrary limits on SRCU nesting. So I
 kicked the state-storage problem up to the caller.Of course, it is not permitted to call synchronize_srcu() 
 while in an SRCU read-side critical section.o There is no call_srcu(). It would not be hard to implement 
 one, but it seems like too easy a way to OOM the system.
 (Hey, we have enough trouble with call_rcu(), which does
 -not- permit readers to sleep!!!) So, if you want it,
 please tell me why...[josht@us.ibm.com: sparse notation] 
 Signed-off-by: Paul E. McKenney
 Signed-off-by: Josh Triplett
 Signed-off-by: Andrew Morton
 Signed-off-by: Linus Torvalds