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

Commit a362e0a7 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by David S. Miller
Browse files

[NETEM]: report reorder percent correctly.



If you setup netem to just delay packets; "tc qdisc ls" will report
the reordering as 100%. Well it's a lie, reorder isn't used unless
gap is set, so just set value to 0 so the output of utility
is correct.

Signed-off-by: default avatarStephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7e58886b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -429,6 +429,7 @@ static int netem_change(struct Qdisc *sch, struct rtattr *opt)
	/* for compatiablity with earlier versions.
	 * if gap is set, need to assume 100% probablity
	 */
	if (q->gap)
		q->reorder = ~0;

	/* Handle nested options after initial queue options.