commit | 7ff8b4502bc0f576450d4ecbda97fa30e8002ed1 | [log] [tgz] |
---|---|---|
author | Paul E. McKenney <paulmck@kernel.org> | Sun Dec 22 19:32:54 2019 -0800 |
committer | Paul E. McKenney <paulmck@kernel.org> | Thu Feb 20 16:01:11 2020 -0800 |
tree | 9f86c585fad2a69e0085e77448dbecbdc896e6be | |
parent | bb6d3fb354c5ee8d6bde2d576eb7220ea09862b9 [diff] |
srcu: Fix __call_srcu()/process_srcu() datarace The srcu_node structure's ->srcu_gp_seq_needed_exp field is accessed locklessly, so updates must use WRITE_ONCE(). This commit therefore adds the needed WRITE_ONCE() invocations. 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>