diff options
-rw-r--r-- | kernel/rcutree.h | 2 | ||||
-rw-r--r-- | kernel/rcutree_plugin.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kernel/rcutree.h b/kernel/rcutree.h index c1891c3cae63..ddb79ece05eb 100644 --- a/kernel/rcutree.h +++ b/kernel/rcutree.h | |||
@@ -301,7 +301,7 @@ DECLARE_PER_CPU(struct rcu_data, rcu_preempt_data); | |||
301 | #else /* #ifdef RCU_TREE_NONCORE */ | 301 | #else /* #ifdef RCU_TREE_NONCORE */ |
302 | 302 | ||
303 | /* Forward declarations for rcutree_plugin.h */ | 303 | /* Forward declarations for rcutree_plugin.h */ |
304 | static inline void rcu_bootup_announce(void); | 304 | static void rcu_bootup_announce(void); |
305 | long rcu_batches_completed(void); | 305 | long rcu_batches_completed(void); |
306 | static void rcu_preempt_note_context_switch(int cpu); | 306 | static void rcu_preempt_note_context_switch(int cpu); |
307 | static int rcu_preempted_readers(struct rcu_node *rnp); | 307 | static int rcu_preempted_readers(struct rcu_node *rnp); |
diff --git a/kernel/rcutree_plugin.h b/kernel/rcutree_plugin.h index ef2a58c2b9d5..c03edf766357 100644 --- a/kernel/rcutree_plugin.h +++ b/kernel/rcutree_plugin.h | |||
@@ -33,7 +33,7 @@ DEFINE_PER_CPU(struct rcu_data, rcu_preempt_data); | |||
33 | /* | 33 | /* |
34 | * Tell them what RCU they are running. | 34 | * Tell them what RCU they are running. |
35 | */ | 35 | */ |
36 | static inline void rcu_bootup_announce(void) | 36 | static void rcu_bootup_announce(void) |
37 | { | 37 | { |
38 | printk(KERN_INFO | 38 | printk(KERN_INFO |
39 | "Experimental preemptable hierarchical RCU implementation.\n"); | 39 | "Experimental preemptable hierarchical RCU implementation.\n"); |
@@ -481,7 +481,7 @@ void exit_rcu(void) | |||
481 | /* | 481 | /* |
482 | * Tell them what RCU they are running. | 482 | * Tell them what RCU they are running. |
483 | */ | 483 | */ |
484 | static inline void rcu_bootup_announce(void) | 484 | static void rcu_bootup_announce(void) |
485 | { | 485 | { |
486 | printk(KERN_INFO "Hierarchical RCU implementation.\n"); | 486 | printk(KERN_INFO "Hierarchical RCU implementation.\n"); |
487 | } | 487 | } |