diff options
Diffstat (limited to 'include/net/sch_generic.h')
-rw-r--r-- | include/net/sch_generic.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h index 8a44386b35cf..f396dff335a3 100644 --- a/include/net/sch_generic.h +++ b/include/net/sch_generic.h | |||
@@ -306,6 +306,16 @@ static inline bool qdisc_tx_is_noop(const struct net_device *dev) | |||
306 | return true; | 306 | return true; |
307 | } | 307 | } |
308 | 308 | ||
309 | static inline int qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch) | ||
310 | { | ||
311 | return sch->enqueue(skb, sch); | ||
312 | } | ||
313 | |||
314 | static inline int qdisc_enqueue_root(struct sk_buff *skb, struct Qdisc *sch) | ||
315 | { | ||
316 | return qdisc_enqueue(skb, sch); | ||
317 | } | ||
318 | |||
309 | static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch, | 319 | static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch, |
310 | struct sk_buff_head *list) | 320 | struct sk_buff_head *list) |
311 | { | 321 | { |