Commit 28aa7c86 authored by Vinicius Costa Gomes's avatar Vinicius Costa Gomes Committed by David S. Miller

sched: etf: Fix ordering of packets with same txtime

When a application sends many packets with the same txtime, they may
be transmitted out of order (different from the order in which they
were enqueued).

This happens because when inserting elements into the tree, when the
txtime of two packets are the same, the new packet is inserted at the
left side of the tree, causing the reordering. The only effect of this
change should be that packets with the same txtime will be transmitted
in the order they are enqueued.

The application in question (the AVTP GStreamer plugin, still in
development) is sending video traffic, in which each video frame have
a single presentation time, the problem is that when packetizing,
multiple packets end up with the same txtime.

The receiving side was rejecting packets because they were being
received out of order.

Fixes: 25db26a9 ("net/sched: Introduce the ETF Qdisc")
Reported-by: default avatarEderson de Souza <ederson.desouza@intel.com>
Signed-off-by: default avatarVinicius Costa Gomes <vinicius.gomes@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 39f13ea2
...@@ -177,7 +177,7 @@ static int etf_enqueue_timesortedlist(struct sk_buff *nskb, struct Qdisc *sch, ...@@ -177,7 +177,7 @@ static int etf_enqueue_timesortedlist(struct sk_buff *nskb, struct Qdisc *sch,
parent = *p; parent = *p;
skb = rb_to_skb(parent); skb = rb_to_skb(parent);
if (ktime_after(txtime, skb->tstamp)) { if (ktime_compare(txtime, skb->tstamp) >= 0) {
p = &parent->rb_right; p = &parent->rb_right;
leftmost = false; leftmost = false;
} else { } else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment