[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20081014095337.GD10804@ff.dom.local>
Date: Tue, 14 Oct 2008 09:53:38 +0000
From: Jarek Poplawski <jarkao2@...il.com>
To: David Miller <davem@...emloft.net>
Cc: netdev@...r.kernel.org
Subject: [PATCH 03/14] pkt_sched: Replace explitic ->dequeue() call with
qdisc_dequeue() in sch_multiq.
Replace explitic ->dequeue() call with qdisc_dequeue() in sch_multiq.
Signed-off-by: Jarek Poplawski <jarkao2@...il.com>
---
net/sched/sch_multiq.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/sched/sch_multiq.c b/net/sched/sch_multiq.c
index 915f314..df1857a 100644
--- a/net/sched/sch_multiq.c
+++ b/net/sched/sch_multiq.c
@@ -144,7 +144,7 @@ static struct sk_buff *multiq_dequeue(struct Qdisc *sch)
*/
if (!__netif_subqueue_stopped(qdisc_dev(sch), q->curband)) {
qdisc = q->queues[q->curband];
- skb = qdisc->dequeue(qdisc);
+ skb = qdisc_dequeue(qdisc);
if (skb) {
sch->q.qlen--;
return skb;
--
1.5.6.5
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists