diff options
author | Steven Rostedt <rostedt@goodmis.org> | 2008-05-22 14:18:17 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-19 09:45:37 +0200 |
commit | afd38009cc3acd36d41f349a669ad5825d695b1f (patch) | |
tree | 01068aa7fedbd9bc6f158e9dd470ac1336f9a027 | |
parent | 30e0e178193d4221abc9926b07a4c7661c7cc4a9 (diff) | |
download | op-kernel-dev-afd38009cc3acd36d41f349a669ad5825d695b1f.zip op-kernel-dev-afd38009cc3acd36d41f349a669ad5825d695b1f.tar.gz |
rcupreempt: remove export of rcu_batches_completed_bh
In rcupreempt, rcu_batches_completed_bh is defined as a static inline in
the header file. This does not need to be exported, and not only that,
this breaks my PPC build.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Cc: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Cc: paulus@samba.org
Cc: linuxppc-dev@ozlabs.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | kernel/rcupreempt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/rcupreempt.c b/kernel/rcupreempt.c index e1cdf19..5e02b774 100644 --- a/kernel/rcupreempt.c +++ b/kernel/rcupreempt.c @@ -217,8 +217,6 @@ long rcu_batches_completed(void) } EXPORT_SYMBOL_GPL(rcu_batches_completed); -EXPORT_SYMBOL_GPL(rcu_batches_completed_bh); - void __rcu_read_lock(void) { int idx; |