diff options
author | Pranith Kumar | 2014-07-08 18:26:10 -0400 |
---|---|---|
committer | Paul E. McKenney | 2014-09-07 16:18:08 -0700 |
commit | bf33eb1aef23e8049cd222471d35b0988c420b18 (patch) | |
tree | f11d24b510be87605605dc13517b354144192783 /kernel/rcu | |
parent | 4de376a1b14e32f550931274f06b571abc0f3d4b (diff) |
rcu: Fix sparse warning about rcu_batches_completed_preempt() being non-static
fix sparse warning about rcu_batches_completed_preempt() being non-static by
marking it as static
Signed-off-by: Pranith Kumar <bobby.prani@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/rcu')
-rw-r--r-- | kernel/rcu/tree_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h index 218fae30c380..5defa2f089af 100644 --- a/kernel/rcu/tree_plugin.h +++ b/kernel/rcu/tree_plugin.h @@ -134,7 +134,7 @@ static void __init rcu_bootup_announce(void) * Return the number of RCU-preempt batches processed thus far * for debug and statistics. */ -long rcu_batches_completed_preempt(void) +static long rcu_batches_completed_preempt(void) { return rcu_preempt_state.completed; } |