blob: c33180dd42b4916e9cb6b73544b757b71755aecb [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
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +000048#define TCQ_F_CAN_BYPASS 8
Patrick McHardy23bcf632009-09-09 18:11:23 -070049#define TCQ_F_MQROOT 16
Jarek Poplawskib00355d2009-02-01 01:12:42 -080050#define TCQ_F_WARN_NONWC (1 << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 int padded;
52 struct Qdisc_ops *ops;
Jussi Kivilinna175f9c12008-07-20 00:08:47 -070053 struct qdisc_size_table *stab;
Eric Dumazet5e140df2009-03-20 01:33:32 -070054 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 u32 handle;
56 u32 parent;
57 atomic_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 struct gnet_stats_rate_est rate_est;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 int (*reshape_fail)(struct sk_buff *skb,
60 struct Qdisc *q);
61
David S. Miller72b25a92008-07-18 20:54:17 -070062 void *u32_node;
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 /* This field is deprecated, but it is still used by CBQ
65 * and it will live until better solution will be invented.
66 */
67 struct Qdisc *__parent;
Eric Dumazet5e140df2009-03-20 01:33:32 -070068 struct netdev_queue *dev_queue;
69 struct Qdisc *next_sched;
70
71 struct sk_buff *gso_skb;
72 /*
73 * For performance sake on SMP, we put highly modified fields at the end
74 */
75 unsigned long state;
76 struct sk_buff_head q;
Eric Dumazetc1a8f1f2009-08-16 09:36:49 +000077 struct gnet_stats_basic_packed bstats;
Eric Dumazet5e140df2009-03-20 01:33:32 -070078 struct gnet_stats_queue qstats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079};
80
81struct Qdisc_class_ops
82{
83 /* Child qdisc manipulation */
Jarek Poplawski926e61b2009-09-15 02:53:07 -070084 struct netdev_queue * (*select_queue)(struct Qdisc *, struct tcmsg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 int (*graft)(struct Qdisc *, unsigned long cl,
86 struct Qdisc *, struct Qdisc **);
87 struct Qdisc * (*leaf)(struct Qdisc *, unsigned long cl);
Patrick McHardy43effa12006-11-29 17:35:48 -080088 void (*qlen_notify)(struct Qdisc *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 /* Class manipulation routines */
91 unsigned long (*get)(struct Qdisc *, u32 classid);
92 void (*put)(struct Qdisc *, unsigned long);
93 int (*change)(struct Qdisc *, u32, u32,
Patrick McHardy1e904742008-01-22 22:11:17 -080094 struct nlattr **, unsigned long *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 int (*delete)(struct Qdisc *, unsigned long);
96 void (*walk)(struct Qdisc *, struct qdisc_walker * arg);
97
98 /* Filter manipulation */
99 struct tcf_proto ** (*tcf_chain)(struct Qdisc *, unsigned long);
100 unsigned long (*bind_tcf)(struct Qdisc *, unsigned long,
101 u32 classid);
102 void (*unbind_tcf)(struct Qdisc *, unsigned long);
103
104 /* rtnetlink specific */
105 int (*dump)(struct Qdisc *, unsigned long,
106 struct sk_buff *skb, struct tcmsg*);
107 int (*dump_stats)(struct Qdisc *, unsigned long,
108 struct gnet_dump *);
109};
110
111struct Qdisc_ops
112{
113 struct Qdisc_ops *next;
Eric Dumazet20fea082007-11-14 01:44:41 -0800114 const struct Qdisc_class_ops *cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 char id[IFNAMSIZ];
116 int priv_size;
117
118 int (*enqueue)(struct sk_buff *, struct Qdisc *);
119 struct sk_buff * (*dequeue)(struct Qdisc *);
Jarek Poplawski90d841fd2008-10-31 00:43:45 -0700120 struct sk_buff * (*peek)(struct Qdisc *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 unsigned int (*drop)(struct Qdisc *);
122
Patrick McHardy1e904742008-01-22 22:11:17 -0800123 int (*init)(struct Qdisc *, struct nlattr *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 void (*reset)(struct Qdisc *);
125 void (*destroy)(struct Qdisc *);
Patrick McHardy1e904742008-01-22 22:11:17 -0800126 int (*change)(struct Qdisc *, struct nlattr *arg);
David S. Miller6ec1c692009-09-06 01:58:51 -0700127 void (*attach)(struct Qdisc *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 int (*dump)(struct Qdisc *, struct sk_buff *);
130 int (*dump_stats)(struct Qdisc *, struct gnet_dump *);
131
132 struct module *owner;
133};
134
135
136struct tcf_result
137{
138 unsigned long class;
139 u32 classid;
140};
141
142struct tcf_proto_ops
143{
144 struct tcf_proto_ops *next;
145 char kind[IFNAMSIZ];
146
147 int (*classify)(struct sk_buff*, struct tcf_proto*,
148 struct tcf_result *);
149 int (*init)(struct tcf_proto*);
150 void (*destroy)(struct tcf_proto*);
151
152 unsigned long (*get)(struct tcf_proto*, u32 handle);
153 void (*put)(struct tcf_proto*, unsigned long);
154 int (*change)(struct tcf_proto*, unsigned long,
Patrick McHardyadd93b62008-01-22 22:11:33 -0800155 u32 handle, struct nlattr **,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 unsigned long *);
157 int (*delete)(struct tcf_proto*, unsigned long);
158 void (*walk)(struct tcf_proto*, struct tcf_walker *arg);
159
160 /* rtnetlink specific */
161 int (*dump)(struct tcf_proto*, unsigned long,
162 struct sk_buff *skb, struct tcmsg*);
163
164 struct module *owner;
165};
166
167struct tcf_proto
168{
169 /* Fast access part */
170 struct tcf_proto *next;
171 void *root;
172 int (*classify)(struct sk_buff*, struct tcf_proto*,
173 struct tcf_result *);
Al Viro66c6f522006-11-20 18:07:51 -0800174 __be16 protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 /* All the rest */
177 u32 prio;
178 u32 classid;
179 struct Qdisc *q;
180 void *data;
181 struct tcf_proto_ops *ops;
182};
183
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700184struct qdisc_skb_cb {
185 unsigned int pkt_len;
186 char data[];
187};
188
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000189static inline int qdisc_qlen(struct Qdisc *q)
190{
191 return q->q.qlen;
192}
193
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700194static inline struct qdisc_skb_cb *qdisc_skb_cb(struct sk_buff *skb)
195{
196 return (struct qdisc_skb_cb *)skb->cb;
197}
198
David S. Miller83874002008-07-17 00:53:03 -0700199static inline spinlock_t *qdisc_lock(struct Qdisc *qdisc)
200{
201 return &qdisc->q.lock;
202}
203
David S. Miller7698b4f2008-07-16 01:42:40 -0700204static inline struct Qdisc *qdisc_root(struct Qdisc *qdisc)
205{
206 return qdisc->dev_queue->qdisc;
207}
208
Jarek Poplawski2540e052008-08-21 05:11:14 -0700209static inline struct Qdisc *qdisc_root_sleeping(struct Qdisc *qdisc)
210{
211 return qdisc->dev_queue->qdisc_sleeping;
212}
213
David S. Miller7e43f112008-08-02 23:27:37 -0700214/* The qdisc root lock is a mechanism by which to top level
215 * of a qdisc tree can be locked from any qdisc node in the
216 * forest. This allows changing the configuration of some
217 * aspect of the qdisc tree while blocking out asynchronous
218 * qdisc access in the packet processing paths.
219 *
220 * It is only legal to do this when the root will not change
221 * on us. Otherwise we'll potentially lock the wrong qdisc
222 * root. This is enforced by holding the RTNL semaphore, which
223 * all users of this lock accessor must do.
224 */
David S. Miller7698b4f2008-07-16 01:42:40 -0700225static inline spinlock_t *qdisc_root_lock(struct Qdisc *qdisc)
226{
227 struct Qdisc *root = qdisc_root(qdisc);
228
David S. Miller7e43f112008-08-02 23:27:37 -0700229 ASSERT_RTNL();
David S. Miller83874002008-07-17 00:53:03 -0700230 return qdisc_lock(root);
David S. Miller7698b4f2008-07-16 01:42:40 -0700231}
232
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700233static inline spinlock_t *qdisc_root_sleeping_lock(struct Qdisc *qdisc)
234{
235 struct Qdisc *root = qdisc_root_sleeping(qdisc);
236
237 ASSERT_RTNL();
238 return qdisc_lock(root);
239}
240
David S. Miller5ce2d482008-07-08 17:06:30 -0700241static inline struct net_device *qdisc_dev(struct Qdisc *qdisc)
242{
243 return qdisc->dev_queue->dev;
244}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
David S. Miller78a5b302008-07-16 03:12:24 -0700246static inline void sch_tree_lock(struct Qdisc *q)
247{
Jarek Poplawskife439dd2008-08-27 02:27:10 -0700248 spin_lock_bh(qdisc_root_sleeping_lock(q));
David S. Miller78a5b302008-07-16 03:12:24 -0700249}
250
251static inline void sch_tree_unlock(struct Qdisc *q)
252{
Jarek Poplawskife439dd2008-08-27 02:27:10 -0700253 spin_unlock_bh(qdisc_root_sleeping_lock(q));
David S. Miller78a5b302008-07-16 03:12:24 -0700254}
255
256#define tcf_tree_lock(tp) sch_tree_lock((tp)->q)
257#define tcf_tree_unlock(tp) sch_tree_unlock((tp)->q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Thomas Grafe41a33e2005-07-05 14:14:30 -0700259extern struct Qdisc noop_qdisc;
260extern struct Qdisc_ops noop_qdisc_ops;
David S. Miller6ec1c692009-09-06 01:58:51 -0700261extern struct Qdisc_ops pfifo_fast_ops;
262extern struct Qdisc_ops mq_qdisc_ops;
Thomas Grafe41a33e2005-07-05 14:14:30 -0700263
Patrick McHardy6fe1c7a2008-07-05 23:21:31 -0700264struct Qdisc_class_common
265{
266 u32 classid;
267 struct hlist_node hnode;
268};
269
270struct Qdisc_class_hash
271{
272 struct hlist_head *hash;
273 unsigned int hashsize;
274 unsigned int hashmask;
275 unsigned int hashelems;
276};
277
278static inline unsigned int qdisc_class_hash(u32 id, u32 mask)
279{
280 id ^= id >> 8;
281 id ^= id >> 4;
282 return id & mask;
283}
284
285static inline struct Qdisc_class_common *
286qdisc_class_find(struct Qdisc_class_hash *hash, u32 id)
287{
288 struct Qdisc_class_common *cl;
289 struct hlist_node *n;
290 unsigned int h;
291
292 h = qdisc_class_hash(id, hash->hashmask);
293 hlist_for_each_entry(cl, n, &hash->hash[h], hnode) {
294 if (cl->classid == id)
295 return cl;
296 }
297 return NULL;
298}
299
300extern int qdisc_class_hash_init(struct Qdisc_class_hash *);
301extern void qdisc_class_hash_insert(struct Qdisc_class_hash *, struct Qdisc_class_common *);
302extern void qdisc_class_hash_remove(struct Qdisc_class_hash *, struct Qdisc_class_common *);
303extern void qdisc_class_hash_grow(struct Qdisc *, struct Qdisc_class_hash *);
304extern void qdisc_class_hash_destroy(struct Qdisc_class_hash *);
305
Thomas Grafe41a33e2005-07-05 14:14:30 -0700306extern void dev_init_scheduler(struct net_device *dev);
307extern void dev_shutdown(struct net_device *dev);
308extern void dev_activate(struct net_device *dev);
309extern void dev_deactivate(struct net_device *dev);
Patrick McHardy589983c2009-09-04 06:41:20 +0000310extern struct Qdisc *dev_graft_qdisc(struct netdev_queue *dev_queue,
311 struct Qdisc *qdisc);
Thomas Grafe41a33e2005-07-05 14:14:30 -0700312extern void qdisc_reset(struct Qdisc *qdisc);
313extern void qdisc_destroy(struct Qdisc *qdisc);
Patrick McHardy43effa12006-11-29 17:35:48 -0800314extern void qdisc_tree_decrease_qlen(struct Qdisc *qdisc, unsigned int n);
David S. Miller5ce2d482008-07-08 17:06:30 -0700315extern struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700316 struct Qdisc_ops *ops);
Thomas Grafe41a33e2005-07-05 14:14:30 -0700317extern struct Qdisc *qdisc_create_dflt(struct net_device *dev,
David S. Millerbb949fb2008-07-08 16:55:56 -0700318 struct netdev_queue *dev_queue,
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800319 struct Qdisc_ops *ops, u32 parentid);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700320extern void qdisc_calculate_pkt_len(struct sk_buff *skb,
321 struct qdisc_size_table *stab);
Patrick McHardya48b5a62007-03-23 11:29:43 -0700322extern void tcf_destroy(struct tcf_proto *tp);
Patrick McHardyff31ab52008-07-01 19:52:38 -0700323extern void tcf_destroy_chain(struct tcf_proto **fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
David S. Miller5aa70992008-07-08 22:59:10 -0700325/* Reset all TX qdiscs of a device. */
326static inline void qdisc_reset_all_tx(struct net_device *dev)
327{
David S. Millere8a04642008-07-17 00:34:19 -0700328 unsigned int i;
329 for (i = 0; i < dev->num_tx_queues; i++)
330 qdisc_reset(netdev_get_tx_queue(dev, i)->qdisc);
David S. Miller5aa70992008-07-08 22:59:10 -0700331}
332
David S. Miller3e745dd2008-07-08 23:00:25 -0700333/* Are all TX queues of the device empty? */
334static inline bool qdisc_all_tx_empty(const struct net_device *dev)
335{
David S. Millere8a04642008-07-17 00:34:19 -0700336 unsigned int i;
337 for (i = 0; i < dev->num_tx_queues; i++) {
338 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
339 const struct Qdisc *q = txq->qdisc;
David S. Miller3e745dd2008-07-08 23:00:25 -0700340
David S. Millere8a04642008-07-17 00:34:19 -0700341 if (q->q.qlen)
342 return false;
343 }
344 return true;
David S. Miller3e745dd2008-07-08 23:00:25 -0700345}
346
David S. Miller6fa98642008-07-08 23:01:06 -0700347/* Are any of the TX qdiscs changing? */
348static inline bool qdisc_tx_changing(struct net_device *dev)
349{
David S. Millere8a04642008-07-17 00:34:19 -0700350 unsigned int i;
351 for (i = 0; i < dev->num_tx_queues; i++) {
352 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
353 if (txq->qdisc != txq->qdisc_sleeping)
354 return true;
355 }
356 return false;
David S. Miller6fa98642008-07-08 23:01:06 -0700357}
358
David S. Millere8a04642008-07-17 00:34:19 -0700359/* Is the device using the noop qdisc on all queues? */
David S. Miller05297942008-07-08 23:01:27 -0700360static inline bool qdisc_tx_is_noop(const struct net_device *dev)
361{
David S. Millere8a04642008-07-17 00:34:19 -0700362 unsigned int i;
363 for (i = 0; i < dev->num_tx_queues; i++) {
364 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
365 if (txq->qdisc != &noop_qdisc)
366 return false;
367 }
368 return true;
David S. Miller05297942008-07-08 23:01:27 -0700369}
370
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700371static inline unsigned int qdisc_pkt_len(struct sk_buff *skb)
372{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700373 return qdisc_skb_cb(skb)->pkt_len;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700374}
375
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700376/* additional qdisc xmit flags (NET_XMIT_MASK in linux/netdevice.h) */
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700377enum net_xmit_qdisc_t {
378 __NET_XMIT_STOLEN = 0x00010000,
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700379 __NET_XMIT_BYPASS = 0x00020000,
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700380};
381
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700382#ifdef CONFIG_NET_CLS_ACT
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700383#define net_xmit_drop_count(e) ((e) & __NET_XMIT_STOLEN ? 0 : 1)
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700384#else
385#define net_xmit_drop_count(e) (1)
386#endif
387
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700388static inline int qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch)
389{
David S. Miller3a682fb2008-07-20 18:13:01 -0700390#ifdef CONFIG_NET_SCHED
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700391 if (sch->stab)
392 qdisc_calculate_pkt_len(skb, sch->stab);
David S. Miller3a682fb2008-07-20 18:13:01 -0700393#endif
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700394 return sch->enqueue(skb, sch);
395}
396
397static inline int qdisc_enqueue_root(struct sk_buff *skb, struct Qdisc *sch)
398{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700399 qdisc_skb_cb(skb)->pkt_len = skb->len;
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700400 return qdisc_enqueue(skb, sch) & NET_XMIT_MASK;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700401}
402
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000403static inline void __qdisc_update_bstats(struct Qdisc *sch, unsigned int len)
404{
405 sch->bstats.bytes += len;
406 sch->bstats.packets++;
407}
408
Thomas Graf9972b252005-06-18 22:57:26 -0700409static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch,
410 struct sk_buff_head *list)
411{
412 __skb_queue_tail(list, skb);
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700413 sch->qstats.backlog += qdisc_pkt_len(skb);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000414 __qdisc_update_bstats(sch, qdisc_pkt_len(skb));
Thomas Graf9972b252005-06-18 22:57:26 -0700415
416 return NET_XMIT_SUCCESS;
417}
418
419static inline int qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch)
420{
421 return __qdisc_enqueue_tail(skb, sch, &sch->q);
422}
423
424static inline struct sk_buff *__qdisc_dequeue_head(struct Qdisc *sch,
425 struct sk_buff_head *list)
426{
427 struct sk_buff *skb = __skb_dequeue(list);
428
429 if (likely(skb != NULL))
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700430 sch->qstats.backlog -= qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700431
432 return skb;
433}
434
435static inline struct sk_buff *qdisc_dequeue_head(struct Qdisc *sch)
436{
437 return __qdisc_dequeue_head(sch, &sch->q);
438}
439
440static inline struct sk_buff *__qdisc_dequeue_tail(struct Qdisc *sch,
441 struct sk_buff_head *list)
442{
443 struct sk_buff *skb = __skb_dequeue_tail(list);
444
445 if (likely(skb != NULL))
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700446 sch->qstats.backlog -= qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700447
448 return skb;
449}
450
451static inline struct sk_buff *qdisc_dequeue_tail(struct Qdisc *sch)
452{
453 return __qdisc_dequeue_tail(sch, &sch->q);
454}
455
Patrick McHardy48a8f512008-10-31 00:44:18 -0700456static inline struct sk_buff *qdisc_peek_head(struct Qdisc *sch)
457{
458 return skb_peek(&sch->q);
459}
460
Jarek Poplawski77be1552008-10-31 00:47:01 -0700461/* generic pseudo peek method for non-work-conserving qdisc */
462static inline struct sk_buff *qdisc_peek_dequeued(struct Qdisc *sch)
463{
464 /* we can reuse ->gso_skb because peek isn't called for root qdiscs */
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800465 if (!sch->gso_skb) {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700466 sch->gso_skb = sch->dequeue(sch);
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800467 if (sch->gso_skb)
468 /* it's still part of the queue */
469 sch->q.qlen++;
470 }
Jarek Poplawski77be1552008-10-31 00:47:01 -0700471
472 return sch->gso_skb;
473}
474
475/* use instead of qdisc->dequeue() for all qdiscs queried with ->peek() */
476static inline struct sk_buff *qdisc_dequeue_peeked(struct Qdisc *sch)
477{
478 struct sk_buff *skb = sch->gso_skb;
479
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800480 if (skb) {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700481 sch->gso_skb = NULL;
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800482 sch->q.qlen--;
483 } else {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700484 skb = sch->dequeue(sch);
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800485 }
Jarek Poplawski77be1552008-10-31 00:47:01 -0700486
487 return skb;
488}
489
Thomas Graf9972b252005-06-18 22:57:26 -0700490static inline void __qdisc_reset_queue(struct Qdisc *sch,
491 struct sk_buff_head *list)
492{
493 /*
494 * We do not know the backlog in bytes of this list, it
495 * is up to the caller to correct it
496 */
David S. Miller93245dd2008-07-17 04:03:43 -0700497 __skb_queue_purge(list);
Thomas Graf9972b252005-06-18 22:57:26 -0700498}
499
500static inline void qdisc_reset_queue(struct Qdisc *sch)
501{
502 __qdisc_reset_queue(sch, &sch->q);
503 sch->qstats.backlog = 0;
504}
505
506static inline unsigned int __qdisc_queue_drop(struct Qdisc *sch,
507 struct sk_buff_head *list)
508{
509 struct sk_buff *skb = __qdisc_dequeue_tail(sch, list);
510
511 if (likely(skb != NULL)) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700512 unsigned int len = qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700513 kfree_skb(skb);
514 return len;
515 }
516
517 return 0;
518}
519
520static inline unsigned int qdisc_queue_drop(struct Qdisc *sch)
521{
522 return __qdisc_queue_drop(sch, &sch->q);
523}
524
525static inline int qdisc_drop(struct sk_buff *skb, struct Qdisc *sch)
526{
527 kfree_skb(skb);
528 sch->qstats.drops++;
529
530 return NET_XMIT_DROP;
531}
532
533static inline int qdisc_reshape_fail(struct sk_buff *skb, struct Qdisc *sch)
534{
535 sch->qstats.drops++;
536
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700537#ifdef CONFIG_NET_CLS_ACT
Thomas Graf9972b252005-06-18 22:57:26 -0700538 if (sch->reshape_fail == NULL || sch->reshape_fail(skb, sch))
539 goto drop;
540
541 return NET_XMIT_SUCCESS;
542
543drop:
544#endif
545 kfree_skb(skb);
546 return NET_XMIT_DROP;
547}
548
Jesper Dangaard Brouere9bef552007-09-12 16:35:24 +0200549/* Length to Time (L2T) lookup in a qdisc_rate_table, to determine how
550 long it will take to send a packet given its size.
551 */
552static inline u32 qdisc_l2t(struct qdisc_rate_table* rtab, unsigned int pktlen)
553{
Jesper Dangaard Brouere08b0992007-09-12 16:36:28 +0200554 int slot = pktlen + rtab->rate.cell_align + rtab->rate.overhead;
555 if (slot < 0)
556 slot = 0;
Jesper Dangaard Brouere9bef552007-09-12 16:35:24 +0200557 slot >>= rtab->rate.cell_log;
558 if (slot > 255)
559 return (rtab->data[255]*(slot >> 8) + rtab->data[slot & 0xFF]);
560 return rtab->data[slot];
561}
562
Jamal Hadi Salim12da81d2007-10-26 02:47:23 -0700563#ifdef CONFIG_NET_CLS_ACT
564static inline struct sk_buff *skb_act_clone(struct sk_buff *skb, gfp_t gfp_mask)
565{
566 struct sk_buff *n = skb_clone(skb, gfp_mask);
567
568 if (n) {
569 n->tc_verd = SET_TC_VERD(n->tc_verd, 0);
570 n->tc_verd = CLR_TC_OK2MUNGE(n->tc_verd);
571 n->tc_verd = CLR_TC_MUNGED(n->tc_verd);
Jamal Hadi Salim12da81d2007-10-26 02:47:23 -0700572 }
573 return n;
574}
575#endif
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577#endif