Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd961c2c authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

netem: fix dequeue



commit 50612537 (netem: fix classful handling) added two errors in
netem_dequeue()

1) After checking skb at the head of tfifo queue for time constraints,
   it dequeues tail skb, thus adding unwanted reordering.

2) qdisc stats are updated twice per packet
   (one when packet dequeued from tfifo, once when delivered)

Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b01543df
Loading
Loading
Loading
Loading
+2 −4
Original line number Original line Diff line number Diff line
@@ -501,9 +501,8 @@ static struct sk_buff *netem_dequeue(struct Qdisc *sch)


		/* if more time remaining? */
		/* if more time remaining? */
		if (cb->time_to_send <= psched_get_time()) {
		if (cb->time_to_send <= psched_get_time()) {
			skb = qdisc_dequeue_tail(sch);
			__skb_unlink(skb, &sch->q);
			if (unlikely(!skb))
			sch->qstats.backlog -= qdisc_pkt_len(skb);
				goto qdisc_dequeue;


#ifdef CONFIG_NET_CLS_ACT
#ifdef CONFIG_NET_CLS_ACT
			/*
			/*
@@ -539,7 +538,6 @@ static struct sk_buff *netem_dequeue(struct Qdisc *sch)
		qdisc_watchdog_schedule(&q->watchdog, cb->time_to_send);
		qdisc_watchdog_schedule(&q->watchdog, cb->time_to_send);
	}
	}


qdisc_dequeue:
	if (q->qdisc) {
	if (q->qdisc) {
		skb = q->qdisc->ops->dequeue(q->qdisc);
		skb = q->qdisc->ops->dequeue(q->qdisc);
		if (skb)
		if (skb)