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/cls_route.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/cls_route.c')
-rw-r--r-- | net/sched/cls_route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/cls_route.c b/net/sched/cls_route.c index 784dcb870b98..5a16ca28aa3d 100644 --- a/net/sched/cls_route.c +++ b/net/sched/cls_route.c | |||
@@ -302,7 +302,7 @@ static int route4_delete(struct tcf_proto *tp, unsigned long arg) | |||
302 | *fp = f->next; | 302 | *fp = f->next; |
303 | tcf_tree_unlock(tp); | 303 | tcf_tree_unlock(tp); |
304 | 304 | ||
305 | route4_reset_fastmap(tp->q->dev, head, f->id); | 305 | route4_reset_fastmap(qdisc_dev(tp->q), head, f->id); |
306 | route4_delete_filter(tp, f); | 306 | route4_delete_filter(tp, f); |
307 | 307 | ||
308 | /* Strip tree */ | 308 | /* Strip tree */ |
@@ -500,7 +500,7 @@ reinsert: | |||
500 | } | 500 | } |
501 | tcf_tree_unlock(tp); | 501 | tcf_tree_unlock(tp); |
502 | 502 | ||
503 | route4_reset_fastmap(tp->q->dev, head, f->id); | 503 | route4_reset_fastmap(qdisc_dev(tp->q), head, f->id); |
504 | *arg = (unsigned long)f; | 504 | *arg = (unsigned long)f; |
505 | return 0; | 505 | return 0; |
506 | 506 | ||