rcutorture: Remove redundant initialization to zero
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Tue, 1 Mar 2016 16:52:19 +0000 (08:52 -0800)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Thu, 31 Mar 2016 20:39:51 +0000 (13:39 -0700)
commit67522beecfc75d133514dda64107ee19125a74b9
tree0e4c08e31e5ff3ffce2fbee8dff44be370d321ab
parente6fb1fc1085e5b5155bc8f3d3385c48b8bdde95e
rcutorture: Remove redundant initialization to zero

The current code initializes the global per-CPU variables
rcu_torture_count and rcu_torture_batch to zero.  However, C does this
initialization by default, and explicit initialization of per-CPU
variables now needs a different syntax if "make tags" is to work.
This commit therefore removes the initialization.

Reported-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
kernel/rcu/rcutorture.c