From: Dmitry Antipov Date: Wed, 4 Sep 2024 11:54:01 +0000 (+0300) Subject: net: sched: consistently use rcu_replace_pointer() in taprio_change() X-Git-Tag: v5.10.227~217 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=62b8a46ba8bbe988dd88f57c713eff10357ca87b;p=thirdparty%2Fkernel%2Fstable.git net: sched: consistently use rcu_replace_pointer() in taprio_change() [ Upstream commit d5c4546062fd6f5dbce575c7ea52ad66d1968678 ] According to Vinicius (and carefully looking through the whole https://syzkaller.appspot.com/bug?extid=b65e0af58423fc8a73aa once again), txtime branch of 'taprio_change()' is not going to race against 'advance_sched()'. But using 'rcu_replace_pointer()' in the former may be a good idea as well. Suggested-by: Vinicius Costa Gomes Signed-off-by: Dmitry Antipov Acked-by: Vinicius Costa Gomes Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- diff --git a/net/sched/sch_taprio.c b/net/sched/sch_taprio.c index ec6b24edf5f93..04ed23b5f21b4 100644 --- a/net/sched/sch_taprio.c +++ b/net/sched/sch_taprio.c @@ -1577,7 +1577,9 @@ static int taprio_change(struct Qdisc *sch, struct nlattr *opt, goto unlock; } - rcu_assign_pointer(q->admin_sched, new_admin); + /* Not going to race against advance_sched(), but still */ + admin = rcu_replace_pointer(q->admin_sched, new_admin, + lockdep_rtnl_is_held()); if (admin) call_rcu(&admin->rcu, taprio_free_sched_cb); } else {