]> git.baikalelectronics.ru Git - kernel.git/commit
sch_sfb: Also store skb len before calling child enqueue
authorToke Høiland-Jørgensen <toke@toke.dk>
Mon, 5 Sep 2022 19:21:36 +0000 (21:21 +0200)
committerPaolo Abeni <pabeni@redhat.com>
Thu, 8 Sep 2022 09:12:58 +0000 (11:12 +0200)
commit258f798734221bcc4488e84da75fd2d370bdbabe
tree14f289c0c25a7a6cb6e5d3df933d8964e465cf24
parent77e3e3e4640f627b620c8334c4a05a35cb19dd9c
sch_sfb: Also store skb len before calling child enqueue

Cong Wang noticed that the previous fix for sch_sfb accessing the queued
skb after enqueueing it to a child qdisc was incomplete: the SFB enqueue
function was also calling qdisc_qstats_backlog_inc() after enqueue, which
reads the pkt len from the skb cb field. Fix this by also storing the skb
len, and using the stored value to increment the backlog after enqueueing.

Fixes: 2ef1492a6e0b ("sch_sfb: Don't assume the skb is still around after enqueueing to child")
Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
Acked-by: Cong Wang <cong.wang@bytedance.com>
Link: https://lore.kernel.org/r/20220905192137.965549-1-toke@toke.dk
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
net/sched/sch_sfb.c