aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/sch_generic.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h
index 8cfdaebbbab3..bf8f7264a778 100644
--- a/include/net/sch_generic.h
+++ b/include/net/sch_generic.h
@@ -242,6 +242,14 @@ static inline bool qdisc_all_tx_empty(const struct net_device *dev)
242 return (q->q.qlen == 0); 242 return (q->q.qlen == 0);
243} 243}
244 244
245/* Are any of the TX qdiscs changing? */
246static inline bool qdisc_tx_changing(struct net_device *dev)
247{
248 struct netdev_queue *txq = &dev->tx_queue;
249
250 return (txq->qdisc != txq->qdisc_sleeping);
251}
252
245static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch, 253static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch,
246 struct sk_buff_head *list) 254 struct sk_buff_head *list)
247{ 255{