diff options
author | Lai Jiangshan <laijs@cn.fujitsu.com> | 2012-10-12 13:14:15 -0400 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2012-10-23 17:54:42 -0400 |
commit | f2ebfbc991044fd5b89d4529741d7500feb37fbd (patch) | |
tree | a3bcb1b376b5c0efc441deac6f63652b71791942 /kernel/srcu.c | |
parent | 4e87b2d7e887df3fe251dd7f702591a3acf369ca (diff) |
srcu: Export process_srcu()
Because process_srcu() will be used in DEFINE_SRCU(), which is a macro
that could be expanded pretty much anywhere, it can no longer be static.
Note that process_srcu() is still internal to srcu.h.
Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/srcu.c')
-rw-r--r-- | kernel/srcu.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/srcu.c b/kernel/srcu.c index 0b99f27fa2f7..b363b0924561 100644 --- a/kernel/srcu.c +++ b/kernel/srcu.c | |||
@@ -94,9 +94,6 @@ static inline void rcu_batch_move(struct rcu_batch *to, struct rcu_batch *from) | |||
94 | } | 94 | } |
95 | } | 95 | } |
96 | 96 | ||
97 | /* single-thread state-machine */ | ||
98 | static void process_srcu(struct work_struct *work); | ||
99 | |||
100 | static int init_srcu_struct_fields(struct srcu_struct *sp) | 97 | static int init_srcu_struct_fields(struct srcu_struct *sp) |
101 | { | 98 | { |
102 | sp->completed = 0; | 99 | sp->completed = 0; |
@@ -639,7 +636,7 @@ static void srcu_reschedule(struct srcu_struct *sp) | |||
639 | /* | 636 | /* |
640 | * This is the work-queue function that handles SRCU grace periods. | 637 | * This is the work-queue function that handles SRCU grace periods. |
641 | */ | 638 | */ |
642 | static void process_srcu(struct work_struct *work) | 639 | void process_srcu(struct work_struct *work) |
643 | { | 640 | { |
644 | struct srcu_struct *sp; | 641 | struct srcu_struct *sp; |
645 | 642 | ||
@@ -650,3 +647,4 @@ static void process_srcu(struct work_struct *work) | |||
650 | srcu_invoke_callbacks(sp); | 647 | srcu_invoke_callbacks(sp); |
651 | srcu_reschedule(sp); | 648 | srcu_reschedule(sp); |
652 | } | 649 | } |
650 | EXPORT_SYMBOL_GPL(process_srcu); | ||