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

Commit 74d58a0c authored by David S. Miller's avatar David S. Miller
Browse files

pkt_sched: Make netem queue agnostic.



It just wants the root qdisc given an arbitrary qdisc,
and that is simply qdisc->dev_queue->qdisc

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Acked-by: default avatarStephen Hemminger <shemminger@vyatta.com>
parent 68dfb427
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -180,7 +180,7 @@ static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch)
	 * skb will be queued.
	 */
	if (count > 1 && (skb2 = skb_clone(skb, GFP_ATOMIC)) != NULL) {
		struct Qdisc *rootq = qdisc_dev(sch)->tx_queue.qdisc;
		struct Qdisc *rootq = sch->dev_queue->qdisc;
		u32 dupsave = q->duplicate; /* prevent duplicating a dup... */
		q->duplicate = 0;