diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2009-09-23 12:50:42 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-09-23 13:46:29 -0400 |
commit | 1eba8f84380bede3c602bd7758dea96925cead01 (patch) | |
tree | 32dd97671016c9fdc24d75be50cc8540e6cc0730 /kernel/rcutree_plugin.h | |
parent | fc2219d49ef1606e7fd2c88af2b423b01ff3d319 (diff) |
rcu: Clean up code based on review feedback from Josh Triplett, part 2
These issues identified during an old-fashioned face-to-face code
review extending over many hours.
o Add comments for tricky parts of code, and correct comments
that have passed their sell-by date.
o Get rid of the vestiges of rcu_init_sched(), which is no
longer needed now that PREEMPT_RCU is gone.
o Move the #include of rcutree_plugin.h to the end of
rcutree.c, which means that, rather than having a random
collection of forward declarations, the new set of forward
declarations document the set of plugins. The new home for
this #include also allows __rcu_init_preempt() to move into
rcutree_plugin.h.
o Fix rcu_preempt_check_callbacks() to be static.
Suggested-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: laijs@cn.fujitsu.com
Cc: dipankar@in.ibm.com
Cc: akpm@linux-foundation.org
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: <12537246443924-git-send-email->
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Peter Zijlstra <peterz@infradead.org>
Diffstat (limited to 'kernel/rcutree_plugin.h')
-rw-r--r-- | kernel/rcutree_plugin.h | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/kernel/rcutree_plugin.h b/kernel/rcutree_plugin.h index 8ff1ba7b3c43..65250219ab6d 100644 --- a/kernel/rcutree_plugin.h +++ b/kernel/rcutree_plugin.h | |||
@@ -419,6 +419,18 @@ static void __cpuinit rcu_preempt_init_percpu_data(int cpu) | |||
419 | } | 419 | } |
420 | 420 | ||
421 | /* | 421 | /* |
422 | * Initialize preemptable RCU's state structures. | ||
423 | */ | ||
424 | static void __init __rcu_init_preempt(void) | ||
425 | { | ||
426 | int i; /* All used by RCU_INIT_FLAVOR(). */ | ||
427 | int j; | ||
428 | struct rcu_node *rnp; | ||
429 | |||
430 | RCU_INIT_FLAVOR(&rcu_preempt_state, rcu_preempt_data); | ||
431 | } | ||
432 | |||
433 | /* | ||
422 | * Check for a task exiting while in a preemptable-RCU read-side | 434 | * Check for a task exiting while in a preemptable-RCU read-side |
423 | * critical section, clean up if so. No need to issue warnings, | 435 | * critical section, clean up if so. No need to issue warnings, |
424 | * as debug_check_no_locks_held() already does this if lockdep | 436 | * as debug_check_no_locks_held() already does this if lockdep |
@@ -518,7 +530,7 @@ static void rcu_preempt_offline_cpu(int cpu) | |||
518 | * Because preemptable RCU does not exist, it never has any callbacks | 530 | * Because preemptable RCU does not exist, it never has any callbacks |
519 | * to check. | 531 | * to check. |
520 | */ | 532 | */ |
521 | void rcu_preempt_check_callbacks(int cpu) | 533 | static void rcu_preempt_check_callbacks(int cpu) |
522 | { | 534 | { |
523 | } | 535 | } |
524 | 536 | ||
@@ -526,7 +538,7 @@ void rcu_preempt_check_callbacks(int cpu) | |||
526 | * Because preemptable RCU does not exist, it never has any callbacks | 538 | * Because preemptable RCU does not exist, it never has any callbacks |
527 | * to process. | 539 | * to process. |
528 | */ | 540 | */ |
529 | void rcu_preempt_process_callbacks(void) | 541 | static void rcu_preempt_process_callbacks(void) |
530 | { | 542 | { |
531 | } | 543 | } |
532 | 544 | ||
@@ -563,4 +575,11 @@ static void __cpuinit rcu_preempt_init_percpu_data(int cpu) | |||
563 | { | 575 | { |
564 | } | 576 | } |
565 | 577 | ||
578 | /* | ||
579 | * Because preemptable RCU does not exist, it need not be initialized. | ||
580 | */ | ||
581 | static void __init __rcu_init_preempt(void) | ||
582 | { | ||
583 | } | ||
584 | |||
566 | #endif /* #else #ifdef CONFIG_TREE_PREEMPT_RCU */ | 585 | #endif /* #else #ifdef CONFIG_TREE_PREEMPT_RCU */ |