* [PATCH 21/24] jrcu: make global symbols static
@ 2011-03-24 17:48 Joe Korty
0 siblings, 0 replies; only message in thread
From: Joe Korty @ 2011-03-24 17:48 UTC (permalink / raw)
To: paulmck
Cc: fweisbec, peterz, laijs, mathieu.desnoyers, dhowells,
loic.minier, dhaval.giani, tglx, josh, houston.jim, andi,
linux-kernel
jrcu: make unnecessarily global symbols static.
Signed-off-by: Joe Korty <joe.korty@ccur.com>
Index: b/kernel/jrcu.c
===================================================================
--- a/kernel/jrcu.c
+++ b/kernel/jrcu.c
@@ -133,9 +133,9 @@ static struct rcu_stats {
#define RCU_HZ_PERIOD_US (USEC_PER_SEC / RCU_HZ)
#define RCU_HZ_DELTA_US (USEC_PER_SEC / (HZ * 3 / 2))
-int rcu_hz = RCU_HZ;
-int rcu_hz_period_us = RCU_HZ_PERIOD_US;
-int rcu_hz_delta_us = RCU_HZ_DELTA_US;
+static int rcu_hz = RCU_HZ;
+static int rcu_hz_period_us = RCU_HZ_PERIOD_US;
+static int rcu_hz_delta_us = RCU_HZ_DELTA_US;
int rcu_scheduler_active __read_mostly;
int rcu_nmi_seen __read_mostly;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-03-24 17:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-24 17:48 [PATCH 21/24] jrcu: make global symbols static Joe Korty
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome