commit | 3ca3b0e2cbe0050d1777a22b7fc13cad620eb2ba | [log] [tgz] |
---|---|---|
author | Paul E. McKenney <paulmck@kernel.org> | Wed Jan 08 20:12:59 2020 -0800 |
committer | Paul E. McKenney <paulmck@kernel.org> | Thu Feb 20 15:58:22 2020 -0800 |
tree | 49721ba89164cdb071ddadfec90152f6632a2e40 | |
parent | 2a2ae872ef7aa958f2152b8b24c6e94cf5f1d0df [diff] |
rcu: Add *_ONCE() to rcu_node ->boost_kthread_status The rcu_node structure's ->boost_kthread_status field is accessed locklessly, so this commit causes all updates to use WRITE_ONCE() and all reads to use READ_ONCE(). This data race was reported by KCSAN. Not appropriate for backporting due to failure being unlikely. Signed-off-by: Paul E. McKenney <paulmck@kernel.org>