commit | 67522beecfc75d133514dda64107ee19125a74b9 | [log] [tgz] |
---|---|---|
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | Tue Mar 01 08:52:19 2016 -0800 |
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | Thu Mar 31 13:39:51 2016 -0700 |
tree | 0e4c08e31e5ff3ffce2fbee8dff44be370d321ab | |
parent | e6fb1fc1085e5b5155bc8f3d3385c48b8bdde95e [diff] |
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>