]> Git Repo - linux.git/commitdiff
sch_sfb: Also store skb len before calling child enqueue
authorToke Høiland-Jørgensen <[email protected]>
Mon, 5 Sep 2022 19:21:36 +0000 (21:21 +0200)
committerPaolo Abeni <[email protected]>
Thu, 8 Sep 2022 09:12:58 +0000 (11:12 +0200)
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: 9efd23297cca ("sch_sfb: Don't assume the skb is still around after enqueueing to child")
Signed-off-by: Toke Høiland-Jørgensen <[email protected]>
Acked-by: Cong Wang <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Paolo Abeni <[email protected]>
net/sched/sch_sfb.c

index 0d761f454ae8b40e29c4dc05490f964c15df3d32..2829455211f8c50fcc14a9b3902035481e43ae78 100644 (file)
@@ -281,6 +281,7 @@ static int sfb_enqueue(struct sk_buff *skb, struct Qdisc *sch,
 {
 
        struct sfb_sched_data *q = qdisc_priv(sch);
+       unsigned int len = qdisc_pkt_len(skb);
        struct Qdisc *child = q->qdisc;
        struct tcf_proto *fl;
        struct sfb_skb_cb cb;
@@ -403,7 +404,7 @@ enqueue:
        memcpy(&cb, sfb_skb_cb(skb), sizeof(cb));
        ret = qdisc_enqueue(skb, child, to_free);
        if (likely(ret == NET_XMIT_SUCCESS)) {
-               qdisc_qstats_backlog_inc(sch, skb);
+               sch->qstats.backlog += len;
                sch->q.qlen++;
                increment_qlen(&cb, q);
        } else if (net_xmit_drop_count(ret)) {
This page took 0.053129 seconds and 4 git commands to generate.