]> git.itanic.dy.fi Git - linux-stable/commitdiff
net/sched: taprio: avoid calling child->ops->dequeue(child) twice
authorVladimir Oltean <vladimir.oltean@nxp.com>
Tue, 7 Feb 2023 13:54:29 +0000 (15:54 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 8 Feb 2023 09:48:52 +0000 (09:48 +0000)
Simplify taprio_dequeue_from_txq() by noticing that we can goto one call
earlier than the previous skb_found label. This is possible because
we've unified the treatment of the child->ops->dequeue(child) return
call, we always try other TXQs now, instead of abandoning the root
dequeue completely if we failed in the peek() case.

Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Reviewed-by: Kurt Kanzenbach <kurt@linutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/sch_taprio.c

index 272a8b7c0f9f311ef2ee57ebe6812d3ab7b2d060..a3770d599a8457eeb48b5d588c03e1bc86a56dd6 100644 (file)
@@ -528,12 +528,8 @@ static struct sk_buff *taprio_dequeue_from_txq(struct Qdisc *sch, int txq,
        if (unlikely(!child))
                return NULL;
 
-       if (TXTIME_ASSIST_IS_ENABLED(q->flags)) {
-               skb = child->ops->dequeue(child);
-               if (!skb)
-                       return NULL;
-               goto skb_found;
-       }
+       if (TXTIME_ASSIST_IS_ENABLED(q->flags))
+               goto skip_peek_checks;
 
        skb = child->ops->peek(child);
        if (!skb)
@@ -560,11 +556,11 @@ static struct sk_buff *taprio_dequeue_from_txq(struct Qdisc *sch, int txq,
            atomic_sub_return(len, &entry->budget) < 0)
                return NULL;
 
+skip_peek_checks:
        skb = child->ops->dequeue(child);
        if (unlikely(!skb))
                return NULL;
 
-skb_found:
        qdisc_bstats_update(sch, skb);
        qdisc_qstats_backlog_dec(sch, skb);
        sch->q.qlen--;