* [PATCH net-next v5] net: sched: consistently use rcu_replace_pointer() in taprio_change()
@ 2024-09-04 11:54 Dmitry Antipov
2024-09-05 12:42 ` Vinicius Costa Gomes
2024-09-08 10:30 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Dmitry Antipov @ 2024-09-04 11:54 UTC (permalink / raw)
To: Vinicius Costa Gomes
Cc: Jakub Kicinski, Paolo Abeni, Simon Horman, netdev, lvc-project,
Dmitry Antipov
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 <vinicius.gomes@intel.com>
Signed-off-by: Dmitry Antipov <dmantipov@yandex.ru>
---
v5: cut from the series, add syzbot link an re-target to net-next
v4: adjust subject to target net tree
v3: unchanged since v2
v2: added to the series
---
net/sched/sch_taprio.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/net/sched/sch_taprio.c b/net/sched/sch_taprio.c
index cc2df9f8c14a..8498d0606b24 100644
--- a/net/sched/sch_taprio.c
+++ b/net/sched/sch_taprio.c
@@ -1952,7 +1952,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 {
--
2.46.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next v5] net: sched: consistently use rcu_replace_pointer() in taprio_change()
2024-09-04 11:54 [PATCH net-next v5] net: sched: consistently use rcu_replace_pointer() in taprio_change() Dmitry Antipov
@ 2024-09-05 12:42 ` Vinicius Costa Gomes
2024-09-08 10:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Vinicius Costa Gomes @ 2024-09-05 12:42 UTC (permalink / raw)
To: Dmitry Antipov
Cc: Jakub Kicinski, Paolo Abeni, Simon Horman, netdev, lvc-project,
Dmitry Antipov
Dmitry Antipov <dmantipov@yandex.ru> writes:
> 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 <vinicius.gomes@intel.com>
> Signed-off-by: Dmitry Antipov <dmantipov@yandex.ru>
> ---
> v5: cut from the series, add syzbot link an re-target to net-next
> v4: adjust subject to target net tree
> v3: unchanged since v2
> v2: added to the series
> ---
Acked-by: Vinicius Costa Gomes <vinicius.gomes@intel.com>
Cheers,
--
Vinicius
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next v5] net: sched: consistently use rcu_replace_pointer() in taprio_change()
2024-09-04 11:54 [PATCH net-next v5] net: sched: consistently use rcu_replace_pointer() in taprio_change() Dmitry Antipov
2024-09-05 12:42 ` Vinicius Costa Gomes
@ 2024-09-08 10:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-09-08 10:30 UTC (permalink / raw)
To: Dmitry Antipov; +Cc: vinicius.gomes, kuba, pabeni, horms, netdev, lvc-project
Hello:
This patch was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:
On Wed, 4 Sep 2024 14:54:01 +0300 you wrote:
> 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 <vinicius.gomes@intel.com>
> Signed-off-by: Dmitry Antipov <dmantipov@yandex.ru>
>
> [...]
Here is the summary with links:
- [net-next,v5] net: sched: consistently use rcu_replace_pointer() in taprio_change()
https://git.kernel.org/netdev/net-next/c/d5c4546062fd
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-09-08 10:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-04 11:54 [PATCH net-next v5] net: sched: consistently use rcu_replace_pointer() in taprio_change() Dmitry Antipov
2024-09-05 12:42 ` Vinicius Costa Gomes
2024-09-08 10:30 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).