commit | 8da9a59523b6608f4b21f3e489578d0993c0779f | [log] [tgz] |
---|---|---|
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | Tue May 22 11:17:51 2018 -0700 |
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | Thu Jul 12 15:42:03 2018 -0700 |
tree | 7059a4926b5b50b52d15730958ff70c6ec2d71ea | |
parent | 6b06aa723ed705102f3c63a494ac45352ccc0e7c [diff] |
rcutorture: Use atomic increment for n_rcu_torture_timers Currently, rcu_torture_timer() relies on a lock to guard updates to n_rcu_torture_timers. Unfortunately, consolidating code with rcu_torture_reader() will dispense with this lock. This commit therefore makes n_rcu_torture_timers be an atomic_long_t and uses atomic_long_inc() to carry out the update. Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>