diff options
author | David S. Miller <davem@davemloft.net> | 2008-07-08 19:55:56 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-08 19:55:56 -0400 |
commit | bb949fbd1878973c3539d9aecff52f284482a937 (patch) | |
tree | e8bde854b18be79723502167c16e2131914a75b7 /include/net/sch_generic.h | |
parent | e65d22e18038eed7307276e46810d884c402d57d (diff) |
netdev: Create netdev_queue abstraction.
A netdev_queue is an entity managed by a qdisc.
Currently there is one RX and one TX queue, and a netdev_queue merely
contains a backpointer to the net_device.
The Qdisc struct is augmented with a netdev_queue pointer as well.
Eventually the 'dev' Qdisc member will go away and we will have the
resulting hierarchy:
net_device --> netdev_queue --> Qdisc
Also, qdisc_alloc() and qdisc_create_dflt() now take a netdev_queue
pointer argument.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sch_generic.h')
-rw-r--r-- | include/net/sch_generic.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h index 073f2580b83b..0ab53c575f87 100644 --- a/include/net/sch_generic.h +++ b/include/net/sch_generic.h | |||
@@ -37,6 +37,7 @@ struct Qdisc | |||
37 | u32 parent; | 37 | u32 parent; |
38 | atomic_t refcnt; | 38 | atomic_t refcnt; |
39 | struct sk_buff_head q; | 39 | struct sk_buff_head q; |
40 | struct netdev_queue *dev_queue; | ||
40 | struct net_device *dev; | 41 | struct net_device *dev; |
41 | struct list_head list; | 42 | struct list_head list; |
42 | 43 | ||
@@ -216,8 +217,11 @@ extern void dev_deactivate(struct net_device *dev); | |||
216 | extern void qdisc_reset(struct Qdisc *qdisc); | 217 | extern void qdisc_reset(struct Qdisc *qdisc); |
217 | extern void qdisc_destroy(struct Qdisc *qdisc); | 218 | extern void qdisc_destroy(struct Qdisc *qdisc); |
218 | extern void qdisc_tree_decrease_qlen(struct Qdisc *qdisc, unsigned int n); | 219 | extern void qdisc_tree_decrease_qlen(struct Qdisc *qdisc, unsigned int n); |
219 | extern struct Qdisc *qdisc_alloc(struct net_device *dev, struct Qdisc_ops *ops); | 220 | extern struct Qdisc *qdisc_alloc(struct net_device *dev, |
221 | struct netdev_queue *dev_queue, | ||
222 | struct Qdisc_ops *ops); | ||
220 | extern struct Qdisc *qdisc_create_dflt(struct net_device *dev, | 223 | extern struct Qdisc *qdisc_create_dflt(struct net_device *dev, |
224 | struct netdev_queue *dev_queue, | ||
221 | struct Qdisc_ops *ops, u32 parentid); | 225 | struct Qdisc_ops *ops, u32 parentid); |
222 | extern void tcf_destroy(struct tcf_proto *tp); | 226 | extern void tcf_destroy(struct tcf_proto *tp); |
223 | extern void tcf_destroy_chain(struct tcf_proto **fl); | 227 | extern void tcf_destroy_chain(struct tcf_proto **fl); |