rcutorture: Eliminate unused ts_rem local from rcu_trace_clock_local()
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Fri, 23 Jun 2017 23:07:17 +0000 (16:07 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Mon, 24 Jul 2017 23:04:17 +0000 (16:04 -0700)
This commit removes an unused local variable named ts_rem that is
marked __maybe_unused.  Yes, the variable was assigned to, but it
was never used beyond that point, hence not needed.

Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
kernel/rcu/rcutorture.c

index 75ac749..6e3f644 100644 (file)
@@ -199,7 +199,8 @@ MODULE_PARM_DESC(torture_runnable, "Start rcutorture at boot");
 static u64 notrace rcu_trace_clock_local(void)
 {
        u64 ts = trace_clock_local();
-       unsigned long __maybe_unused ts_rem = do_div(ts, NSEC_PER_USEC);
+
+       (void)do_div(ts, NSEC_PER_USEC);
        return ts;
 }
 #else /* #ifdef CONFIG_RCU_TRACE */