]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
rcutorture: Fix a sparse warning by marking boost_mutex static
authorPranith Kumar <bobby.prani@gmail.com>
Wed, 11 Jun 2014 20:39:43 +0000 (16:39 -0400)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Sun, 7 Sep 2014 23:24:17 +0000 (16:24 -0700)
This commit fixes the following sparse warning by marking boost_mutex
static:

kernel/rcu/rcutorture.c:185:1: warning: symbol 'boost_mutex' was not declared. Should it be static?

Signed-off-by: Pranith Kumar <bobby.prani@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
kernel/rcu/rcutorture.c

index 948a7693748ed3d0be04fb022d5ac6a195903e3c..7e67711cbae81c460fd16c70c4324d34c80dc556 100644 (file)
@@ -182,7 +182,7 @@ static u64 notrace rcu_trace_clock_local(void)
 #endif /* #else #ifdef CONFIG_RCU_TRACE */
 
 static unsigned long boost_starttime;  /* jiffies of next boost test start. */
-DEFINE_MUTEX(boost_mutex);             /* protect setting boost_starttime */
+static DEFINE_MUTEX(boost_mutex);      /* protect setting boost_starttime */
                                        /*  and boost task create/destroy. */
 static atomic_t barrier_cbs_count;     /* Barrier callbacks registered. */
 static bool barrier_phase;             /* Test phase. */