blob: 964ffa0d8815139ae22d351590b5673a4dd38850 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __NET_SCHED_GENERIC_H
2#define __NET_SCHED_GENERIC_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/netdevice.h>
5#include <linux/types.h>
6#include <linux/rcupdate.h>
7#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/pkt_sched.h>
9#include <linux/pkt_cls.h>
10#include <net/gen_stats.h>
Thomas Grafbe577dd2007-03-22 11:55:50 -070011#include <net/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13struct Qdisc_ops;
14struct qdisc_walker;
15struct tcf_walker;
16struct module;
17
18struct qdisc_rate_table
19{
20 struct tc_ratespec rate;
21 u32 data[256];
22 struct qdisc_rate_table *next;
23 int refcnt;
24};
25
David S. Millere2627c82008-07-16 00:56:32 -070026enum qdisc_state_t
27{
28 __QDISC_STATE_RUNNING,
David S. Miller37437bb2008-07-16 02:15:04 -070029 __QDISC_STATE_SCHED,
David S. Millera9312ae2008-08-17 21:51:03 -070030 __QDISC_STATE_DEACTIVATED,
David S. Millere2627c82008-07-16 00:56:32 -070031};
32
Jussi Kivilinna175f9c12008-07-20 00:08:47 -070033struct qdisc_size_table {
34 struct list_head list;
35 struct tc_sizespec szopts;
36 int refcnt;
37 u16 data[];
38};
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040struct Qdisc
41{
42 int (*enqueue)(struct sk_buff *skb, struct Qdisc *dev);
43 struct sk_buff * (*dequeue)(struct Qdisc *dev);
44 unsigned flags;
Jarek Poplawskib00355d2009-02-01 01:12:42 -080045#define TCQ_F_BUILTIN 1
46#define TCQ_F_THROTTLED 2
47#define TCQ_F_INGRESS 4
48#define TCQ_F_WARN_NONWC (1 << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 int padded;
50 struct Qdisc_ops *ops;
Jussi Kivilinna175f9c12008-07-20 00:08:47 -070051 struct qdisc_size_table *stab;
Eric Dumazet5e140df2009-03-20 01:33:32 -070052 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 u32 handle;
54 u32 parent;
55 atomic_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 struct gnet_stats_rate_est rate_est;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 int (*reshape_fail)(struct sk_buff *skb,
58 struct Qdisc *q);
59
David S. Miller72b25a92008-07-18 20:54:17 -070060 void *u32_node;
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 /* This field is deprecated, but it is still used by CBQ
63 * and it will live until better solution will be invented.
64 */
65 struct Qdisc *__parent;
Eric Dumazet5e140df2009-03-20 01:33:32 -070066 struct netdev_queue *dev_queue;
67 struct Qdisc *next_sched;
68
69 struct sk_buff *gso_skb;
70 /*
71 * For performance sake on SMP, we put highly modified fields at the end
72 */
73 unsigned long state;
74 struct sk_buff_head q;
75 struct gnet_stats_basic bstats;
76 struct gnet_stats_queue qstats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
79struct Qdisc_class_ops
80{
81 /* Child qdisc manipulation */
82 int (*graft)(struct Qdisc *, unsigned long cl,
83 struct Qdisc *, struct Qdisc **);
84 struct Qdisc * (*leaf)(struct Qdisc *, unsigned long cl);
Patrick McHardy43effa12006-11-29 17:35:48 -080085 void (*qlen_notify)(struct Qdisc *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /* Class manipulation routines */
88 unsigned long (*get)(struct Qdisc *, u32 classid);
89 void (*put)(struct Qdisc *, unsigned long);
90 int (*change)(struct Qdisc *, u32, u32,
Patrick McHardy1e904742008-01-22 22:11:17 -080091 struct nlattr **, unsigned long *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 int (*delete)(struct Qdisc *, unsigned long);
93 void (*walk)(struct Qdisc *, struct qdisc_walker * arg);
94
95 /* Filter manipulation */
96 struct tcf_proto ** (*tcf_chain)(struct Qdisc *, unsigned long);
97 unsigned long (*bind_tcf)(struct Qdisc *, unsigned long,
98 u32 classid);
99 void (*unbind_tcf)(struct Qdisc *, unsigned long);
100
101 /* rtnetlink specific */
102 int (*dump)(struct Qdisc *, unsigned long,
103 struct sk_buff *skb, struct tcmsg*);
104 int (*dump_stats)(struct Qdisc *, unsigned long,
105 struct gnet_dump *);
106};
107
108struct Qdisc_ops
109{
110 struct Qdisc_ops *next;
Eric Dumazet20fea082007-11-14 01:44:41 -0800111 const struct Qdisc_class_ops *cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 char id[IFNAMSIZ];
113 int priv_size;
114
115 int (*enqueue)(struct sk_buff *, struct Qdisc *);
116 struct sk_buff * (*dequeue)(struct Qdisc *);
Jarek Poplawski90d841fd2008-10-31 00:43:45 -0700117 struct sk_buff * (*peek)(struct Qdisc *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 unsigned int (*drop)(struct Qdisc *);
119
Patrick McHardy1e904742008-01-22 22:11:17 -0800120 int (*init)(struct Qdisc *, struct nlattr *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 void (*reset)(struct Qdisc *);
122 void (*destroy)(struct Qdisc *);
Patrick McHardy1e904742008-01-22 22:11:17 -0800123 int (*change)(struct Qdisc *, struct nlattr *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 int (*dump)(struct Qdisc *, struct sk_buff *);
126 int (*dump_stats)(struct Qdisc *, struct gnet_dump *);
127
128 struct module *owner;
129};
130
131
132struct tcf_result
133{
134 unsigned long class;
135 u32 classid;
136};
137
138struct tcf_proto_ops
139{
140 struct tcf_proto_ops *next;
141 char kind[IFNAMSIZ];
142
143 int (*classify)(struct sk_buff*, struct tcf_proto*,
144 struct tcf_result *);
145 int (*init)(struct tcf_proto*);
146 void (*destroy)(struct tcf_proto*);
147
148 unsigned long (*get)(struct tcf_proto*, u32 handle);
149 void (*put)(struct tcf_proto*, unsigned long);
150 int (*change)(struct tcf_proto*, unsigned long,
Patrick McHardyadd93b62008-01-22 22:11:33 -0800151 u32 handle, struct nlattr **,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 unsigned long *);
153 int (*delete)(struct tcf_proto*, unsigned long);
154 void (*walk)(struct tcf_proto*, struct tcf_walker *arg);
155
156 /* rtnetlink specific */
157 int (*dump)(struct tcf_proto*, unsigned long,
158 struct sk_buff *skb, struct tcmsg*);
159
160 struct module *owner;
161};
162
163struct tcf_proto
164{
165 /* Fast access part */
166 struct tcf_proto *next;
167 void *root;
168 int (*classify)(struct sk_buff*, struct tcf_proto*,
169 struct tcf_result *);
Al Viro66c6f522006-11-20 18:07:51 -0800170 __be16 protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 /* All the rest */
173 u32 prio;
174 u32 classid;
175 struct Qdisc *q;
176 void *data;
177 struct tcf_proto_ops *ops;
178};
179
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700180struct qdisc_skb_cb {
181 unsigned int pkt_len;
182 char data[];
183};
184
185static inline struct qdisc_skb_cb *qdisc_skb_cb(struct sk_buff *skb)
186{
187 return (struct qdisc_skb_cb *)skb->cb;
188}
189
David S. Miller83874002008-07-17 00:53:03 -0700190static inline spinlock_t *qdisc_lock(struct Qdisc *qdisc)
191{
192 return &qdisc->q.lock;
193}
194
David S. Miller7698b4f2008-07-16 01:42:40 -0700195static inline struct Qdisc *qdisc_root(struct Qdisc *qdisc)
196{
197 return qdisc->dev_queue->qdisc;
198}
199
Jarek Poplawski2540e052008-08-21 05:11:14 -0700200static inline struct Qdisc *qdisc_root_sleeping(struct Qdisc *qdisc)
201{
202 return qdisc->dev_queue->qdisc_sleeping;
203}
204
David S. Miller7e43f112008-08-02 23:27:37 -0700205/* The qdisc root lock is a mechanism by which to top level
206 * of a qdisc tree can be locked from any qdisc node in the
207 * forest. This allows changing the configuration of some
208 * aspect of the qdisc tree while blocking out asynchronous
209 * qdisc access in the packet processing paths.
210 *
211 * It is only legal to do this when the root will not change
212 * on us. Otherwise we'll potentially lock the wrong qdisc
213 * root. This is enforced by holding the RTNL semaphore, which
214 * all users of this lock accessor must do.
215 */
David S. Miller7698b4f2008-07-16 01:42:40 -0700216static inline spinlock_t *qdisc_root_lock(struct Qdisc *qdisc)
217{
218 struct Qdisc *root = qdisc_root(qdisc);
219
David S. Miller7e43f112008-08-02 23:27:37 -0700220 ASSERT_RTNL();
David S. Miller83874002008-07-17 00:53:03 -0700221 return qdisc_lock(root);
David S. Miller7698b4f2008-07-16 01:42:40 -0700222}
223
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700224static inline spinlock_t *qdisc_root_sleeping_lock(struct Qdisc *qdisc)
225{
226 struct Qdisc *root = qdisc_root_sleeping(qdisc);
227
228 ASSERT_RTNL();
229 return qdisc_lock(root);
230}
231
David S. Miller5ce2d482008-07-08 17:06:30 -0700232static inline struct net_device *qdisc_dev(struct Qdisc *qdisc)
233{
234 return qdisc->dev_queue->dev;
235}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
David S. Miller78a5b302008-07-16 03:12:24 -0700237static inline void sch_tree_lock(struct Qdisc *q)
238{
Jarek Poplawskife439dd2008-08-27 02:27:10 -0700239 spin_lock_bh(qdisc_root_sleeping_lock(q));
David S. Miller78a5b302008-07-16 03:12:24 -0700240}
241
242static inline void sch_tree_unlock(struct Qdisc *q)
243{
Jarek Poplawskife439dd2008-08-27 02:27:10 -0700244 spin_unlock_bh(qdisc_root_sleeping_lock(q));
David S. Miller78a5b302008-07-16 03:12:24 -0700245}
246
247#define tcf_tree_lock(tp) sch_tree_lock((tp)->q)
248#define tcf_tree_unlock(tp) sch_tree_unlock((tp)->q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Thomas Grafe41a33e2005-07-05 14:14:30 -0700250extern struct Qdisc noop_qdisc;
251extern struct Qdisc_ops noop_qdisc_ops;
252
Patrick McHardy6fe1c7a2008-07-05 23:21:31 -0700253struct Qdisc_class_common
254{
255 u32 classid;
256 struct hlist_node hnode;
257};
258
259struct Qdisc_class_hash
260{
261 struct hlist_head *hash;
262 unsigned int hashsize;
263 unsigned int hashmask;
264 unsigned int hashelems;
265};
266
267static inline unsigned int qdisc_class_hash(u32 id, u32 mask)
268{
269 id ^= id >> 8;
270 id ^= id >> 4;
271 return id & mask;
272}
273
274static inline struct Qdisc_class_common *
275qdisc_class_find(struct Qdisc_class_hash *hash, u32 id)
276{
277 struct Qdisc_class_common *cl;
278 struct hlist_node *n;
279 unsigned int h;
280
281 h = qdisc_class_hash(id, hash->hashmask);
282 hlist_for_each_entry(cl, n, &hash->hash[h], hnode) {
283 if (cl->classid == id)
284 return cl;
285 }
286 return NULL;
287}
288
289extern int qdisc_class_hash_init(struct Qdisc_class_hash *);
290extern void qdisc_class_hash_insert(struct Qdisc_class_hash *, struct Qdisc_class_common *);
291extern void qdisc_class_hash_remove(struct Qdisc_class_hash *, struct Qdisc_class_common *);
292extern void qdisc_class_hash_grow(struct Qdisc *, struct Qdisc_class_hash *);
293extern void qdisc_class_hash_destroy(struct Qdisc_class_hash *);
294
Thomas Grafe41a33e2005-07-05 14:14:30 -0700295extern void dev_init_scheduler(struct net_device *dev);
296extern void dev_shutdown(struct net_device *dev);
297extern void dev_activate(struct net_device *dev);
298extern void dev_deactivate(struct net_device *dev);
299extern void qdisc_reset(struct Qdisc *qdisc);
300extern void qdisc_destroy(struct Qdisc *qdisc);
Patrick McHardy43effa12006-11-29 17:35:48 -0800301extern void qdisc_tree_decrease_qlen(struct Qdisc *qdisc, unsigned int n);
David S. Miller5ce2d482008-07-08 17:06:30 -0700302extern struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700303 struct Qdisc_ops *ops);
Thomas Grafe41a33e2005-07-05 14:14:30 -0700304extern struct Qdisc *qdisc_create_dflt(struct net_device *dev,
David S. Millerbb949fb2008-07-08 16:55:56 -0700305 struct netdev_queue *dev_queue,
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800306 struct Qdisc_ops *ops, u32 parentid);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700307extern void qdisc_calculate_pkt_len(struct sk_buff *skb,
308 struct qdisc_size_table *stab);
Patrick McHardya48b5a62007-03-23 11:29:43 -0700309extern void tcf_destroy(struct tcf_proto *tp);
Patrick McHardyff31ab52008-07-01 19:52:38 -0700310extern void tcf_destroy_chain(struct tcf_proto **fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
David S. Miller5aa70992008-07-08 22:59:10 -0700312/* Reset all TX qdiscs of a device. */
313static inline void qdisc_reset_all_tx(struct net_device *dev)
314{
David S. Millere8a04642008-07-17 00:34:19 -0700315 unsigned int i;
316 for (i = 0; i < dev->num_tx_queues; i++)
317 qdisc_reset(netdev_get_tx_queue(dev, i)->qdisc);
David S. Miller5aa70992008-07-08 22:59:10 -0700318}
319
David S. Miller3e745dd2008-07-08 23:00:25 -0700320/* Are all TX queues of the device empty? */
321static inline bool qdisc_all_tx_empty(const struct net_device *dev)
322{
David S. Millere8a04642008-07-17 00:34:19 -0700323 unsigned int i;
324 for (i = 0; i < dev->num_tx_queues; i++) {
325 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
326 const struct Qdisc *q = txq->qdisc;
David S. Miller3e745dd2008-07-08 23:00:25 -0700327
David S. Millere8a04642008-07-17 00:34:19 -0700328 if (q->q.qlen)
329 return false;
330 }
331 return true;
David S. Miller3e745dd2008-07-08 23:00:25 -0700332}
333
David S. Miller6fa98642008-07-08 23:01:06 -0700334/* Are any of the TX qdiscs changing? */
335static inline bool qdisc_tx_changing(struct net_device *dev)
336{
David S. Millere8a04642008-07-17 00:34:19 -0700337 unsigned int i;
338 for (i = 0; i < dev->num_tx_queues; i++) {
339 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
340 if (txq->qdisc != txq->qdisc_sleeping)
341 return true;
342 }
343 return false;
David S. Miller6fa98642008-07-08 23:01:06 -0700344}
345
David S. Millere8a04642008-07-17 00:34:19 -0700346/* Is the device using the noop qdisc on all queues? */
David S. Miller05297942008-07-08 23:01:27 -0700347static inline bool qdisc_tx_is_noop(const struct net_device *dev)
348{
David S. Millere8a04642008-07-17 00:34:19 -0700349 unsigned int i;
350 for (i = 0; i < dev->num_tx_queues; i++) {
351 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
352 if (txq->qdisc != &noop_qdisc)
353 return false;
354 }
355 return true;
David S. Miller05297942008-07-08 23:01:27 -0700356}
357
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700358static inline unsigned int qdisc_pkt_len(struct sk_buff *skb)
359{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700360 return qdisc_skb_cb(skb)->pkt_len;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700361}
362
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700363/* additional qdisc xmit flags (NET_XMIT_MASK in linux/netdevice.h) */
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700364enum net_xmit_qdisc_t {
365 __NET_XMIT_STOLEN = 0x00010000,
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700366 __NET_XMIT_BYPASS = 0x00020000,
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700367};
368
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700369#ifdef CONFIG_NET_CLS_ACT
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700370#define net_xmit_drop_count(e) ((e) & __NET_XMIT_STOLEN ? 0 : 1)
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700371#else
372#define net_xmit_drop_count(e) (1)
373#endif
374
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700375static inline int qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch)
376{
David S. Miller3a682fb2008-07-20 18:13:01 -0700377#ifdef CONFIG_NET_SCHED
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700378 if (sch->stab)
379 qdisc_calculate_pkt_len(skb, sch->stab);
David S. Miller3a682fb2008-07-20 18:13:01 -0700380#endif
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700381 return sch->enqueue(skb, sch);
382}
383
384static inline int qdisc_enqueue_root(struct sk_buff *skb, struct Qdisc *sch)
385{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700386 qdisc_skb_cb(skb)->pkt_len = skb->len;
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700387 return qdisc_enqueue(skb, sch) & NET_XMIT_MASK;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700388}
389
Thomas Graf9972b252005-06-18 22:57:26 -0700390static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch,
391 struct sk_buff_head *list)
392{
393 __skb_queue_tail(list, skb);
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700394 sch->qstats.backlog += qdisc_pkt_len(skb);
395 sch->bstats.bytes += qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700396 sch->bstats.packets++;
397
398 return NET_XMIT_SUCCESS;
399}
400
401static inline int qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch)
402{
403 return __qdisc_enqueue_tail(skb, sch, &sch->q);
404}
405
406static inline struct sk_buff *__qdisc_dequeue_head(struct Qdisc *sch,
407 struct sk_buff_head *list)
408{
409 struct sk_buff *skb = __skb_dequeue(list);
410
411 if (likely(skb != NULL))
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700412 sch->qstats.backlog -= qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700413
414 return skb;
415}
416
417static inline struct sk_buff *qdisc_dequeue_head(struct Qdisc *sch)
418{
419 return __qdisc_dequeue_head(sch, &sch->q);
420}
421
422static inline struct sk_buff *__qdisc_dequeue_tail(struct Qdisc *sch,
423 struct sk_buff_head *list)
424{
425 struct sk_buff *skb = __skb_dequeue_tail(list);
426
427 if (likely(skb != NULL))
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700428 sch->qstats.backlog -= qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700429
430 return skb;
431}
432
433static inline struct sk_buff *qdisc_dequeue_tail(struct Qdisc *sch)
434{
435 return __qdisc_dequeue_tail(sch, &sch->q);
436}
437
Patrick McHardy48a8f512008-10-31 00:44:18 -0700438static inline struct sk_buff *qdisc_peek_head(struct Qdisc *sch)
439{
440 return skb_peek(&sch->q);
441}
442
Jarek Poplawski77be1552008-10-31 00:47:01 -0700443/* generic pseudo peek method for non-work-conserving qdisc */
444static inline struct sk_buff *qdisc_peek_dequeued(struct Qdisc *sch)
445{
446 /* we can reuse ->gso_skb because peek isn't called for root qdiscs */
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800447 if (!sch->gso_skb) {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700448 sch->gso_skb = sch->dequeue(sch);
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800449 if (sch->gso_skb)
450 /* it's still part of the queue */
451 sch->q.qlen++;
452 }
Jarek Poplawski77be1552008-10-31 00:47:01 -0700453
454 return sch->gso_skb;
455}
456
457/* use instead of qdisc->dequeue() for all qdiscs queried with ->peek() */
458static inline struct sk_buff *qdisc_dequeue_peeked(struct Qdisc *sch)
459{
460 struct sk_buff *skb = sch->gso_skb;
461
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800462 if (skb) {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700463 sch->gso_skb = NULL;
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800464 sch->q.qlen--;
465 } else {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700466 skb = sch->dequeue(sch);
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800467 }
Jarek Poplawski77be1552008-10-31 00:47:01 -0700468
469 return skb;
470}
471
Thomas Graf9972b252005-06-18 22:57:26 -0700472static inline void __qdisc_reset_queue(struct Qdisc *sch,
473 struct sk_buff_head *list)
474{
475 /*
476 * We do not know the backlog in bytes of this list, it
477 * is up to the caller to correct it
478 */
David S. Miller93245dd2008-07-17 04:03:43 -0700479 __skb_queue_purge(list);
Thomas Graf9972b252005-06-18 22:57:26 -0700480}
481
482static inline void qdisc_reset_queue(struct Qdisc *sch)
483{
484 __qdisc_reset_queue(sch, &sch->q);
485 sch->qstats.backlog = 0;
486}
487
488static inline unsigned int __qdisc_queue_drop(struct Qdisc *sch,
489 struct sk_buff_head *list)
490{
491 struct sk_buff *skb = __qdisc_dequeue_tail(sch, list);
492
493 if (likely(skb != NULL)) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700494 unsigned int len = qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700495 kfree_skb(skb);
496 return len;
497 }
498
499 return 0;
500}
501
502static inline unsigned int qdisc_queue_drop(struct Qdisc *sch)
503{
504 return __qdisc_queue_drop(sch, &sch->q);
505}
506
507static inline int qdisc_drop(struct sk_buff *skb, struct Qdisc *sch)
508{
509 kfree_skb(skb);
510 sch->qstats.drops++;
511
512 return NET_XMIT_DROP;
513}
514
515static inline int qdisc_reshape_fail(struct sk_buff *skb, struct Qdisc *sch)
516{
517 sch->qstats.drops++;
518
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700519#ifdef CONFIG_NET_CLS_ACT
Thomas Graf9972b252005-06-18 22:57:26 -0700520 if (sch->reshape_fail == NULL || sch->reshape_fail(skb, sch))
521 goto drop;
522
523 return NET_XMIT_SUCCESS;
524
525drop:
526#endif
527 kfree_skb(skb);
528 return NET_XMIT_DROP;
529}
530
Jesper Dangaard Brouere9bef552007-09-12 16:35:24 +0200531/* Length to Time (L2T) lookup in a qdisc_rate_table, to determine how
532 long it will take to send a packet given its size.
533 */
534static inline u32 qdisc_l2t(struct qdisc_rate_table* rtab, unsigned int pktlen)
535{
Jesper Dangaard Brouere08b0992007-09-12 16:36:28 +0200536 int slot = pktlen + rtab->rate.cell_align + rtab->rate.overhead;
537 if (slot < 0)
538 slot = 0;
Jesper Dangaard Brouere9bef552007-09-12 16:35:24 +0200539 slot >>= rtab->rate.cell_log;
540 if (slot > 255)
541 return (rtab->data[255]*(slot >> 8) + rtab->data[slot & 0xFF]);
542 return rtab->data[slot];
543}
544
Jamal Hadi Salim12da81d2007-10-26 02:47:23 -0700545#ifdef CONFIG_NET_CLS_ACT
546static inline struct sk_buff *skb_act_clone(struct sk_buff *skb, gfp_t gfp_mask)
547{
548 struct sk_buff *n = skb_clone(skb, gfp_mask);
549
550 if (n) {
551 n->tc_verd = SET_TC_VERD(n->tc_verd, 0);
552 n->tc_verd = CLR_TC_OK2MUNGE(n->tc_verd);
553 n->tc_verd = CLR_TC_MUNGED(n->tc_verd);
Jamal Hadi Salim12da81d2007-10-26 02:47:23 -0700554 }
555 return n;
556}
557#endif
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559#endif