From: Florian Westphal Date: Sat, 17 Sep 2016 22:57:30 +0000 (+0200) Subject: pie: use qdisc_dequeue_head wrapper X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1486587b2fcda08dee7eab23784d504eed772c45;p=linux-beck.git pie: use qdisc_dequeue_head wrapper Doesn't change generated code. Signed-off-by: Florian Westphal Signed-off-by: David S. Miller --- diff --git a/net/sched/sch_pie.c b/net/sched/sch_pie.c index a570b0bb254c..d976d74b22d7 100644 --- a/net/sched/sch_pie.c +++ b/net/sched/sch_pie.c @@ -511,7 +511,7 @@ static int pie_dump_stats(struct Qdisc *sch, struct gnet_dump *d) static struct sk_buff *pie_qdisc_dequeue(struct Qdisc *sch) { struct sk_buff *skb; - skb = __qdisc_dequeue_head(sch, &sch->q); + skb = qdisc_dequeue_head(sch); if (!skb) return NULL;