Skip to content

Commit

Permalink
pie: use qdisc_dequeue_head wrapper
Browse files Browse the repository at this point in the history
Doesn't change generated code.

Signed-off-by: Florian Westphal <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Florian Westphal authored and davem330 committed Sep 19, 2016
1 parent 106323b commit 1486587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/sched/sch_pie.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1486587

Please sign in to comment.