aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/rcutiny.c2
-rw-r--r--kernel/rcutree.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/kernel/rcutiny.c b/kernel/rcutiny.c
index c8b0e1582c04..37a5444204d2 100644
--- a/kernel/rcutiny.c
+++ b/kernel/rcutiny.c
@@ -97,6 +97,7 @@ void rcu_idle_enter(void)
97 rcu_idle_enter_common(oldval); 97 rcu_idle_enter_common(oldval);
98 local_irq_restore(flags); 98 local_irq_restore(flags);
99} 99}
100EXPORT_SYMBOL_GPL(rcu_idle_enter);
100 101
101/* 102/*
102 * Exit an interrupt handler towards idle. 103 * Exit an interrupt handler towards idle.
@@ -153,6 +154,7 @@ void rcu_idle_exit(void)
153 rcu_idle_exit_common(oldval); 154 rcu_idle_exit_common(oldval);
154 local_irq_restore(flags); 155 local_irq_restore(flags);
155} 156}
157EXPORT_SYMBOL_GPL(rcu_idle_exit);
156 158
157/* 159/*
158 * Enter an interrupt handler, moving away from idle. 160 * Enter an interrupt handler, moving away from idle.
diff --git a/kernel/rcutree.c b/kernel/rcutree.c
index 92b47760edf3..eacc10b03531 100644
--- a/kernel/rcutree.c
+++ b/kernel/rcutree.c
@@ -402,6 +402,7 @@ void rcu_idle_enter(void)
402 rcu_idle_enter_common(rdtp, oldval); 402 rcu_idle_enter_common(rdtp, oldval);
403 local_irq_restore(flags); 403 local_irq_restore(flags);
404} 404}
405EXPORT_SYMBOL_GPL(rcu_idle_enter);
405 406
406/** 407/**
407 * rcu_irq_exit - inform RCU that current CPU is exiting irq towards idle 408 * rcu_irq_exit - inform RCU that current CPU is exiting irq towards idle
@@ -493,6 +494,7 @@ void rcu_idle_exit(void)
493 rcu_idle_exit_common(rdtp, oldval); 494 rcu_idle_exit_common(rdtp, oldval);
494 local_irq_restore(flags); 495 local_irq_restore(flags);
495} 496}
497EXPORT_SYMBOL_GPL(rcu_idle_exit);
496 498
497/** 499/**
498 * rcu_irq_enter - inform RCU that current CPU is entering irq away from idle 500 * rcu_irq_enter - inform RCU that current CPU is entering irq away from idle