aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2008-07-08 22:59:10 -0700
committerDavid S. Miller <davem@davemloft.net>2008-07-08 22:59:10 -0700
commit5aa709954a32a646c0cf14fdf7c8834db4ff1c03 (patch)
tree7aac1d47a2d49bbe27d8ad61600ede4c1a2c1b18 /include/net
parentnetdev: Move next_sched into struct netdev_queue. (diff)
downloadlinux-dev-5aa709954a32a646c0cf14fdf7c8834db4ff1c03.tar.xz
linux-dev-5aa709954a32a646c0cf14fdf7c8834db4ff1c03.zip
pkt_sched: Add qdisc_reset_all_tx().
Isolate callers that want to simply reset all the TX qdiscs from the details of TX queues. Use this in the ISDN code. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/sch_generic.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h
index ea71705e9c77..ea33176616ff 100644
--- a/include/net/sch_generic.h
+++ b/include/net/sch_generic.h
@@ -227,6 +227,12 @@ extern struct Qdisc *qdisc_create_dflt(struct net_device *dev,
extern void tcf_destroy(struct tcf_proto *tp);
extern void tcf_destroy_chain(struct tcf_proto **fl);
+/* Reset all TX qdiscs of a device. */
+static inline void qdisc_reset_all_tx(struct net_device *dev)
+{
+ qdisc_reset(dev->tx_queue.qdisc);
+}
+
static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch,
struct sk_buff_head *list)
{