diff options
author | David S. Miller <davem@davemloft.net> | 2008-07-08 20:06:30 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-08 20:06:30 -0400 |
commit | 5ce2d488fe039ddd86a638496cf704df86c74eeb (patch) | |
tree | 71b4d982bfa8bd457bb41c0693c0e70d75b524b4 /net/sched/sch_prio.c | |
parent | bb949fbd1878973c3539d9aecff52f284482a937 (diff) |
pkt_sched: Remove 'dev' member of struct Qdisc.
It can be obtained via the netdev_queue. So create a helper routine,
qdisc_dev(), to make the transformations nicer looking.
Now, qdisc_alloc() now no longer needs a net_device pointer argument.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_prio.c')
-rw-r--r-- | net/sched/sch_prio.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/net/sched/sch_prio.c b/net/sched/sch_prio.c index ca58a039208e..39157f7bc046 100644 --- a/net/sched/sch_prio.c +++ b/net/sched/sch_prio.c | |||
@@ -136,7 +136,8 @@ prio_dequeue(struct Qdisc* sch) | |||
136 | * pulling an skb. This way we avoid excessive requeues | 136 | * pulling an skb. This way we avoid excessive requeues |
137 | * for slower queues. | 137 | * for slower queues. |
138 | */ | 138 | */ |
139 | if (!__netif_subqueue_stopped(sch->dev, (q->mq ? prio : 0))) { | 139 | if (!__netif_subqueue_stopped(qdisc_dev(sch), |
140 | (q->mq ? prio : 0))) { | ||
140 | qdisc = q->queues[prio]; | 141 | qdisc = q->queues[prio]; |
141 | skb = qdisc->dequeue(qdisc); | 142 | skb = qdisc->dequeue(qdisc); |
142 | if (skb) { | 143 | if (skb) { |
@@ -165,8 +166,8 @@ static struct sk_buff *rr_dequeue(struct Qdisc* sch) | |||
165 | * for slower queues. If the queue is stopped, try the | 166 | * for slower queues. If the queue is stopped, try the |
166 | * next queue. | 167 | * next queue. |
167 | */ | 168 | */ |
168 | if (!__netif_subqueue_stopped(sch->dev, | 169 | if (!__netif_subqueue_stopped(qdisc_dev(sch), |
169 | (q->mq ? q->curband : 0))) { | 170 | (q->mq ? q->curband : 0))) { |
170 | qdisc = q->queues[q->curband]; | 171 | qdisc = q->queues[q->curband]; |
171 | skb = qdisc->dequeue(qdisc); | 172 | skb = qdisc->dequeue(qdisc); |
172 | if (skb) { | 173 | if (skb) { |
@@ -249,10 +250,10 @@ static int prio_tune(struct Qdisc *sch, struct nlattr *opt) | |||
249 | if (q->mq) { | 250 | if (q->mq) { |
250 | if (sch->parent != TC_H_ROOT) | 251 | if (sch->parent != TC_H_ROOT) |
251 | return -EINVAL; | 252 | return -EINVAL; |
252 | if (netif_is_multiqueue(sch->dev)) { | 253 | if (netif_is_multiqueue(qdisc_dev(sch))) { |
253 | if (q->bands == 0) | 254 | if (q->bands == 0) |
254 | q->bands = sch->dev->egress_subqueue_count; | 255 | q->bands = qdisc_dev(sch)->egress_subqueue_count; |
255 | else if (q->bands != sch->dev->egress_subqueue_count) | 256 | else if (q->bands != qdisc_dev(sch)->egress_subqueue_count) |
256 | return -EINVAL; | 257 | return -EINVAL; |
257 | } else | 258 | } else |
258 | return -EOPNOTSUPP; | 259 | return -EOPNOTSUPP; |
@@ -281,7 +282,7 @@ static int prio_tune(struct Qdisc *sch, struct nlattr *opt) | |||
281 | for (i=0; i<q->bands; i++) { | 282 | for (i=0; i<q->bands; i++) { |
282 | if (q->queues[i] == &noop_qdisc) { | 283 | if (q->queues[i] == &noop_qdisc) { |
283 | struct Qdisc *child; | 284 | struct Qdisc *child; |
284 | child = qdisc_create_dflt(sch->dev, sch->dev_queue, | 285 | child = qdisc_create_dflt(qdisc_dev(sch), sch->dev_queue, |
285 | &pfifo_qdisc_ops, | 286 | &pfifo_qdisc_ops, |
286 | TC_H_MAKE(sch->handle, i + 1)); | 287 | TC_H_MAKE(sch->handle, i + 1)); |
287 | if (child) { | 288 | if (child) { |