mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
rcu: Remove inline from forward-referenced functions
Some variants of gcc are reputed to dislike forward references to functions declared "inline". Remove the "inline" keyword from such functions. Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> 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: <12578890422402-git-send-email-> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
9160306e6f
commit
dbe01350fa
2 changed files with 3 additions and 3 deletions
|
@ -301,7 +301,7 @@ DECLARE_PER_CPU(struct rcu_data, rcu_preempt_data);
|
||||||
#else /* #ifdef RCU_TREE_NONCORE */
|
#else /* #ifdef RCU_TREE_NONCORE */
|
||||||
|
|
||||||
/* Forward declarations for rcutree_plugin.h */
|
/* Forward declarations for rcutree_plugin.h */
|
||||||
static inline void rcu_bootup_announce(void);
|
static void rcu_bootup_announce(void);
|
||||||
long rcu_batches_completed(void);
|
long rcu_batches_completed(void);
|
||||||
static void rcu_preempt_note_context_switch(int cpu);
|
static void rcu_preempt_note_context_switch(int cpu);
|
||||||
static int rcu_preempted_readers(struct rcu_node *rnp);
|
static int rcu_preempted_readers(struct rcu_node *rnp);
|
||||||
|
|
|
@ -33,7 +33,7 @@ DEFINE_PER_CPU(struct rcu_data, rcu_preempt_data);
|
||||||
/*
|
/*
|
||||||
* Tell them what RCU they are running.
|
* Tell them what RCU they are running.
|
||||||
*/
|
*/
|
||||||
static inline void rcu_bootup_announce(void)
|
static void rcu_bootup_announce(void)
|
||||||
{
|
{
|
||||||
printk(KERN_INFO
|
printk(KERN_INFO
|
||||||
"Experimental preemptable hierarchical RCU implementation.\n");
|
"Experimental preemptable hierarchical RCU implementation.\n");
|
||||||
|
@ -481,7 +481,7 @@ void exit_rcu(void)
|
||||||
/*
|
/*
|
||||||
* Tell them what RCU they are running.
|
* Tell them what RCU they are running.
|
||||||
*/
|
*/
|
||||||
static inline void rcu_bootup_announce(void)
|
static void rcu_bootup_announce(void)
|
||||||
{
|
{
|
||||||
printk(KERN_INFO "Hierarchical RCU implementation.\n");
|
printk(KERN_INFO "Hierarchical RCU implementation.\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue