[PKT_SCHED]: Fix sch_prio.c build with CONFIG_NETDEVICES_MULTIQUEUE
Fix one more user of netiff_subqueue_stopped. To check for the
queue id one must use the __netiff_subqueue_stoped call.
This run out of my sight when I made the:
668f895a85
[NET]: Hide the queue_mapping field inside netif_subqueue_stopped
commit :(
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6a5f44d7a0
commit
0034622693
|
@ -136,7 +136,7 @@ prio_dequeue(struct Qdisc* sch)
|
||||||
* pulling an skb. This way we avoid excessive requeues
|
* pulling an skb. This way we avoid excessive requeues
|
||||||
* for slower queues.
|
* for slower queues.
|
||||||
*/
|
*/
|
||||||
if (!netif_subqueue_stopped(sch->dev, (q->mq ? prio : 0))) {
|
if (!__netif_subqueue_stopped(sch->dev, (q->mq ? prio : 0))) {
|
||||||
qdisc = q->queues[prio];
|
qdisc = q->queues[prio];
|
||||||
skb = qdisc->dequeue(qdisc);
|
skb = qdisc->dequeue(qdisc);
|
||||||
if (skb) {
|
if (skb) {
|
||||||
|
@ -165,7 +165,7 @@ static struct sk_buff *rr_dequeue(struct Qdisc* sch)
|
||||||
* for slower queues. If the queue is stopped, try the
|
* for slower queues. If the queue is stopped, try the
|
||||||
* next queue.
|
* next queue.
|
||||||
*/
|
*/
|
||||||
if (!netif_subqueue_stopped(sch->dev,
|
if (!__netif_subqueue_stopped(sch->dev,
|
||||||
(q->mq ? q->curband : 0))) {
|
(q->mq ? q->curband : 0))) {
|
||||||
qdisc = q->queues[q->curband];
|
qdisc = q->queues[q->curband];
|
||||||
skb = qdisc->dequeue(qdisc);
|
skb = qdisc->dequeue(qdisc);
|
||||||
|
|
Loading…
Reference in New Issue