blob: 67dc08eaaa457cf18d079a7e04807b96f774ebd5 [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
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000018struct qdisc_rate_table {
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 struct tc_ratespec rate;
20 u32 data[256];
21 struct qdisc_rate_table *next;
22 int refcnt;
23};
24
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000025enum qdisc_state_t {
David S. Millere2627c82008-07-16 00:56:32 -070026 __QDISC_STATE_RUNNING,
David S. Miller37437bb2008-07-16 02:15:04 -070027 __QDISC_STATE_SCHED,
David S. Millera9312ae2008-08-17 21:51:03 -070028 __QDISC_STATE_DEACTIVATED,
David S. Millere2627c82008-07-16 00:56:32 -070029};
30
Jussi Kivilinna175f9c12008-07-20 00:08:47 -070031struct qdisc_size_table {
32 struct list_head list;
33 struct tc_sizespec szopts;
34 int refcnt;
35 u16 data[];
36};
37
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000038struct Qdisc {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 int (*enqueue)(struct sk_buff *skb, struct Qdisc *dev);
40 struct sk_buff * (*dequeue)(struct Qdisc *dev);
41 unsigned flags;
Jarek Poplawskib00355d2009-02-01 01:12:42 -080042#define TCQ_F_BUILTIN 1
43#define TCQ_F_THROTTLED 2
44#define TCQ_F_INGRESS 4
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +000045#define TCQ_F_CAN_BYPASS 8
Patrick McHardy23bcf632009-09-09 18:11:23 -070046#define TCQ_F_MQROOT 16
Jarek Poplawskib00355d2009-02-01 01:12:42 -080047#define TCQ_F_WARN_NONWC (1 << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 int padded;
49 struct Qdisc_ops *ops;
Jussi Kivilinna175f9c12008-07-20 00:08:47 -070050 struct qdisc_size_table *stab;
Eric Dumazet5e140df2009-03-20 01:33:32 -070051 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 u32 handle;
53 u32 parent;
54 atomic_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 struct gnet_stats_rate_est rate_est;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 int (*reshape_fail)(struct sk_buff *skb,
57 struct Qdisc *q);
58
David S. Miller72b25a92008-07-18 20:54:17 -070059 void *u32_node;
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 /* This field is deprecated, but it is still used by CBQ
62 * and it will live until better solution will be invented.
63 */
64 struct Qdisc *__parent;
Eric Dumazet5e140df2009-03-20 01:33:32 -070065 struct netdev_queue *dev_queue;
66 struct Qdisc *next_sched;
67
68 struct sk_buff *gso_skb;
69 /*
70 * For performance sake on SMP, we put highly modified fields at the end
71 */
72 unsigned long state;
73 struct sk_buff_head q;
Eric Dumazetc1a8f1f2009-08-16 09:36:49 +000074 struct gnet_stats_basic_packed bstats;
Eric Dumazet5e140df2009-03-20 01:33:32 -070075 struct gnet_stats_queue qstats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000078struct Qdisc_class_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 /* Child qdisc manipulation */
Jarek Poplawski926e61b2009-09-15 02:53:07 -070080 struct netdev_queue * (*select_queue)(struct Qdisc *, struct tcmsg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 int (*graft)(struct Qdisc *, unsigned long cl,
82 struct Qdisc *, struct Qdisc **);
83 struct Qdisc * (*leaf)(struct Qdisc *, unsigned long cl);
Patrick McHardy43effa12006-11-29 17:35:48 -080084 void (*qlen_notify)(struct Qdisc *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 /* Class manipulation routines */
87 unsigned long (*get)(struct Qdisc *, u32 classid);
88 void (*put)(struct Qdisc *, unsigned long);
89 int (*change)(struct Qdisc *, u32, u32,
Patrick McHardy1e904742008-01-22 22:11:17 -080090 struct nlattr **, unsigned long *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 int (*delete)(struct Qdisc *, unsigned long);
92 void (*walk)(struct Qdisc *, struct qdisc_walker * arg);
93
94 /* Filter manipulation */
95 struct tcf_proto ** (*tcf_chain)(struct Qdisc *, unsigned long);
96 unsigned long (*bind_tcf)(struct Qdisc *, unsigned long,
97 u32 classid);
98 void (*unbind_tcf)(struct Qdisc *, unsigned long);
99
100 /* rtnetlink specific */
101 int (*dump)(struct Qdisc *, unsigned long,
102 struct sk_buff *skb, struct tcmsg*);
103 int (*dump_stats)(struct Qdisc *, unsigned long,
104 struct gnet_dump *);
105};
106
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000107struct Qdisc_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 struct Qdisc_ops *next;
Eric Dumazet20fea082007-11-14 01:44:41 -0800109 const struct Qdisc_class_ops *cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 char id[IFNAMSIZ];
111 int priv_size;
112
113 int (*enqueue)(struct sk_buff *, struct Qdisc *);
114 struct sk_buff * (*dequeue)(struct Qdisc *);
Jarek Poplawski90d841fd2008-10-31 00:43:45 -0700115 struct sk_buff * (*peek)(struct Qdisc *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 unsigned int (*drop)(struct Qdisc *);
117
Patrick McHardy1e904742008-01-22 22:11:17 -0800118 int (*init)(struct Qdisc *, struct nlattr *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 void (*reset)(struct Qdisc *);
120 void (*destroy)(struct Qdisc *);
Patrick McHardy1e904742008-01-22 22:11:17 -0800121 int (*change)(struct Qdisc *, struct nlattr *arg);
David S. Miller6ec1c692009-09-06 01:58:51 -0700122 void (*attach)(struct Qdisc *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 int (*dump)(struct Qdisc *, struct sk_buff *);
125 int (*dump_stats)(struct Qdisc *, struct gnet_dump *);
126
127 struct module *owner;
128};
129
130
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000131struct tcf_result {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 unsigned long class;
133 u32 classid;
134};
135
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000136struct tcf_proto_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 struct tcf_proto_ops *next;
138 char kind[IFNAMSIZ];
139
140 int (*classify)(struct sk_buff*, struct tcf_proto*,
141 struct tcf_result *);
142 int (*init)(struct tcf_proto*);
143 void (*destroy)(struct tcf_proto*);
144
145 unsigned long (*get)(struct tcf_proto*, u32 handle);
146 void (*put)(struct tcf_proto*, unsigned long);
147 int (*change)(struct tcf_proto*, unsigned long,
Patrick McHardyadd93b62008-01-22 22:11:33 -0800148 u32 handle, struct nlattr **,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 unsigned long *);
150 int (*delete)(struct tcf_proto*, unsigned long);
151 void (*walk)(struct tcf_proto*, struct tcf_walker *arg);
152
153 /* rtnetlink specific */
154 int (*dump)(struct tcf_proto*, unsigned long,
155 struct sk_buff *skb, struct tcmsg*);
156
157 struct module *owner;
158};
159
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000160struct tcf_proto {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 /* Fast access part */
162 struct tcf_proto *next;
163 void *root;
164 int (*classify)(struct sk_buff*, struct tcf_proto*,
165 struct tcf_result *);
Al Viro66c6f522006-11-20 18:07:51 -0800166 __be16 protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /* All the rest */
169 u32 prio;
170 u32 classid;
171 struct Qdisc *q;
172 void *data;
173 struct tcf_proto_ops *ops;
174};
175
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700176struct qdisc_skb_cb {
177 unsigned int pkt_len;
178 char data[];
179};
180
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000181static inline int qdisc_qlen(struct Qdisc *q)
182{
183 return q->q.qlen;
184}
185
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700186static inline struct qdisc_skb_cb *qdisc_skb_cb(struct sk_buff *skb)
187{
188 return (struct qdisc_skb_cb *)skb->cb;
189}
190
David S. Miller83874002008-07-17 00:53:03 -0700191static inline spinlock_t *qdisc_lock(struct Qdisc *qdisc)
192{
193 return &qdisc->q.lock;
194}
195
David S. Miller7698b4f2008-07-16 01:42:40 -0700196static inline struct Qdisc *qdisc_root(struct Qdisc *qdisc)
197{
198 return qdisc->dev_queue->qdisc;
199}
200
Jarek Poplawski2540e052008-08-21 05:11:14 -0700201static inline struct Qdisc *qdisc_root_sleeping(struct Qdisc *qdisc)
202{
203 return qdisc->dev_queue->qdisc_sleeping;
204}
205
David S. Miller7e43f112008-08-02 23:27:37 -0700206/* The qdisc root lock is a mechanism by which to top level
207 * of a qdisc tree can be locked from any qdisc node in the
208 * forest. This allows changing the configuration of some
209 * aspect of the qdisc tree while blocking out asynchronous
210 * qdisc access in the packet processing paths.
211 *
212 * It is only legal to do this when the root will not change
213 * on us. Otherwise we'll potentially lock the wrong qdisc
214 * root. This is enforced by holding the RTNL semaphore, which
215 * all users of this lock accessor must do.
216 */
David S. Miller7698b4f2008-07-16 01:42:40 -0700217static inline spinlock_t *qdisc_root_lock(struct Qdisc *qdisc)
218{
219 struct Qdisc *root = qdisc_root(qdisc);
220
David S. Miller7e43f112008-08-02 23:27:37 -0700221 ASSERT_RTNL();
David S. Miller83874002008-07-17 00:53:03 -0700222 return qdisc_lock(root);
David S. Miller7698b4f2008-07-16 01:42:40 -0700223}
224
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700225static inline spinlock_t *qdisc_root_sleeping_lock(struct Qdisc *qdisc)
226{
227 struct Qdisc *root = qdisc_root_sleeping(qdisc);
228
229 ASSERT_RTNL();
230 return qdisc_lock(root);
231}
232
David S. Miller5ce2d482008-07-08 17:06:30 -0700233static inline struct net_device *qdisc_dev(struct Qdisc *qdisc)
234{
235 return qdisc->dev_queue->dev;
236}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
David S. Miller78a5b302008-07-16 03:12:24 -0700238static inline void sch_tree_lock(struct Qdisc *q)
239{
Jarek Poplawskife439dd2008-08-27 02:27:10 -0700240 spin_lock_bh(qdisc_root_sleeping_lock(q));
David S. Miller78a5b302008-07-16 03:12:24 -0700241}
242
243static inline void sch_tree_unlock(struct Qdisc *q)
244{
Jarek Poplawskife439dd2008-08-27 02:27:10 -0700245 spin_unlock_bh(qdisc_root_sleeping_lock(q));
David S. Miller78a5b302008-07-16 03:12:24 -0700246}
247
248#define tcf_tree_lock(tp) sch_tree_lock((tp)->q)
249#define tcf_tree_unlock(tp) sch_tree_unlock((tp)->q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Thomas Grafe41a33e2005-07-05 14:14:30 -0700251extern struct Qdisc noop_qdisc;
252extern struct Qdisc_ops noop_qdisc_ops;
David S. Miller6ec1c692009-09-06 01:58:51 -0700253extern struct Qdisc_ops pfifo_fast_ops;
254extern struct Qdisc_ops mq_qdisc_ops;
Thomas Grafe41a33e2005-07-05 14:14:30 -0700255
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000256struct Qdisc_class_common {
Patrick McHardy6fe1c7a2008-07-05 23:21:31 -0700257 u32 classid;
258 struct hlist_node hnode;
259};
260
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000261struct Qdisc_class_hash {
Patrick McHardy6fe1c7a2008-07-05 23:21:31 -0700262 struct hlist_head *hash;
263 unsigned int hashsize;
264 unsigned int hashmask;
265 unsigned int hashelems;
266};
267
268static inline unsigned int qdisc_class_hash(u32 id, u32 mask)
269{
270 id ^= id >> 8;
271 id ^= id >> 4;
272 return id & mask;
273}
274
275static inline struct Qdisc_class_common *
276qdisc_class_find(struct Qdisc_class_hash *hash, u32 id)
277{
278 struct Qdisc_class_common *cl;
279 struct hlist_node *n;
280 unsigned int h;
281
282 h = qdisc_class_hash(id, hash->hashmask);
283 hlist_for_each_entry(cl, n, &hash->hash[h], hnode) {
284 if (cl->classid == id)
285 return cl;
286 }
287 return NULL;
288}
289
290extern int qdisc_class_hash_init(struct Qdisc_class_hash *);
291extern void qdisc_class_hash_insert(struct Qdisc_class_hash *, struct Qdisc_class_common *);
292extern void qdisc_class_hash_remove(struct Qdisc_class_hash *, struct Qdisc_class_common *);
293extern void qdisc_class_hash_grow(struct Qdisc *, struct Qdisc_class_hash *);
294extern void qdisc_class_hash_destroy(struct Qdisc_class_hash *);
295
Thomas Grafe41a33e2005-07-05 14:14:30 -0700296extern void dev_init_scheduler(struct net_device *dev);
297extern void dev_shutdown(struct net_device *dev);
298extern void dev_activate(struct net_device *dev);
299extern void dev_deactivate(struct net_device *dev);
Patrick McHardy589983c2009-09-04 06:41:20 +0000300extern struct Qdisc *dev_graft_qdisc(struct netdev_queue *dev_queue,
301 struct Qdisc *qdisc);
Thomas Grafe41a33e2005-07-05 14:14:30 -0700302extern void qdisc_reset(struct Qdisc *qdisc);
303extern void qdisc_destroy(struct Qdisc *qdisc);
Patrick McHardy43effa12006-11-29 17:35:48 -0800304extern void qdisc_tree_decrease_qlen(struct Qdisc *qdisc, unsigned int n);
David S. Miller5ce2d482008-07-08 17:06:30 -0700305extern struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700306 struct Qdisc_ops *ops);
Thomas Grafe41a33e2005-07-05 14:14:30 -0700307extern struct Qdisc *qdisc_create_dflt(struct net_device *dev,
David S. Millerbb949fb2008-07-08 16:55:56 -0700308 struct netdev_queue *dev_queue,
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800309 struct Qdisc_ops *ops, u32 parentid);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700310extern void qdisc_calculate_pkt_len(struct sk_buff *skb,
311 struct qdisc_size_table *stab);
Patrick McHardya48b5a62007-03-23 11:29:43 -0700312extern void tcf_destroy(struct tcf_proto *tp);
Patrick McHardyff31ab52008-07-01 19:52:38 -0700313extern void tcf_destroy_chain(struct tcf_proto **fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
David S. Miller5aa70992008-07-08 22:59:10 -0700315/* Reset all TX qdiscs of a device. */
316static inline void qdisc_reset_all_tx(struct net_device *dev)
317{
David S. Millere8a04642008-07-17 00:34:19 -0700318 unsigned int i;
319 for (i = 0; i < dev->num_tx_queues; i++)
320 qdisc_reset(netdev_get_tx_queue(dev, i)->qdisc);
David S. Miller5aa70992008-07-08 22:59:10 -0700321}
322
David S. Miller3e745dd2008-07-08 23:00:25 -0700323/* Are all TX queues of the device empty? */
324static inline bool qdisc_all_tx_empty(const struct net_device *dev)
325{
David S. Millere8a04642008-07-17 00:34:19 -0700326 unsigned int i;
327 for (i = 0; i < dev->num_tx_queues; i++) {
328 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
329 const struct Qdisc *q = txq->qdisc;
David S. Miller3e745dd2008-07-08 23:00:25 -0700330
David S. Millere8a04642008-07-17 00:34:19 -0700331 if (q->q.qlen)
332 return false;
333 }
334 return true;
David S. Miller3e745dd2008-07-08 23:00:25 -0700335}
336
David S. Miller6fa98642008-07-08 23:01:06 -0700337/* Are any of the TX qdiscs changing? */
338static inline bool qdisc_tx_changing(struct net_device *dev)
339{
David S. Millere8a04642008-07-17 00:34:19 -0700340 unsigned int i;
341 for (i = 0; i < dev->num_tx_queues; i++) {
342 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
343 if (txq->qdisc != txq->qdisc_sleeping)
344 return true;
345 }
346 return false;
David S. Miller6fa98642008-07-08 23:01:06 -0700347}
348
David S. Millere8a04642008-07-17 00:34:19 -0700349/* Is the device using the noop qdisc on all queues? */
David S. Miller05297942008-07-08 23:01:27 -0700350static inline bool qdisc_tx_is_noop(const struct net_device *dev)
351{
David S. Millere8a04642008-07-17 00:34:19 -0700352 unsigned int i;
353 for (i = 0; i < dev->num_tx_queues; i++) {
354 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
355 if (txq->qdisc != &noop_qdisc)
356 return false;
357 }
358 return true;
David S. Miller05297942008-07-08 23:01:27 -0700359}
360
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700361static inline unsigned int qdisc_pkt_len(struct sk_buff *skb)
362{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700363 return qdisc_skb_cb(skb)->pkt_len;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700364}
365
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700366/* additional qdisc xmit flags (NET_XMIT_MASK in linux/netdevice.h) */
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700367enum net_xmit_qdisc_t {
368 __NET_XMIT_STOLEN = 0x00010000,
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700369 __NET_XMIT_BYPASS = 0x00020000,
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700370};
371
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700372#ifdef CONFIG_NET_CLS_ACT
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700373#define net_xmit_drop_count(e) ((e) & __NET_XMIT_STOLEN ? 0 : 1)
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700374#else
375#define net_xmit_drop_count(e) (1)
376#endif
377
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700378static inline int qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch)
379{
David S. Miller3a682fb2008-07-20 18:13:01 -0700380#ifdef CONFIG_NET_SCHED
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700381 if (sch->stab)
382 qdisc_calculate_pkt_len(skb, sch->stab);
David S. Miller3a682fb2008-07-20 18:13:01 -0700383#endif
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700384 return sch->enqueue(skb, sch);
385}
386
387static inline int qdisc_enqueue_root(struct sk_buff *skb, struct Qdisc *sch)
388{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700389 qdisc_skb_cb(skb)->pkt_len = skb->len;
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700390 return qdisc_enqueue(skb, sch) & NET_XMIT_MASK;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700391}
392
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000393static inline void __qdisc_update_bstats(struct Qdisc *sch, unsigned int len)
394{
395 sch->bstats.bytes += len;
396 sch->bstats.packets++;
397}
398
Thomas Graf9972b252005-06-18 22:57:26 -0700399static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch,
400 struct sk_buff_head *list)
401{
402 __skb_queue_tail(list, skb);
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700403 sch->qstats.backlog += qdisc_pkt_len(skb);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000404 __qdisc_update_bstats(sch, qdisc_pkt_len(skb));
Thomas Graf9972b252005-06-18 22:57:26 -0700405
406 return NET_XMIT_SUCCESS;
407}
408
409static inline int qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch)
410{
411 return __qdisc_enqueue_tail(skb, sch, &sch->q);
412}
413
414static inline struct sk_buff *__qdisc_dequeue_head(struct Qdisc *sch,
415 struct sk_buff_head *list)
416{
417 struct sk_buff *skb = __skb_dequeue(list);
418
419 if (likely(skb != NULL))
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700420 sch->qstats.backlog -= qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700421
422 return skb;
423}
424
425static inline struct sk_buff *qdisc_dequeue_head(struct Qdisc *sch)
426{
427 return __qdisc_dequeue_head(sch, &sch->q);
428}
429
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +0000430static inline unsigned int __qdisc_queue_drop_head(struct Qdisc *sch,
431 struct sk_buff_head *list)
432{
433 struct sk_buff *skb = __qdisc_dequeue_head(sch, list);
434
435 if (likely(skb != NULL)) {
436 unsigned int len = qdisc_pkt_len(skb);
437 kfree_skb(skb);
438 return len;
439 }
440
441 return 0;
442}
443
444static inline unsigned int qdisc_queue_drop_head(struct Qdisc *sch)
445{
446 return __qdisc_queue_drop_head(sch, &sch->q);
447}
448
Thomas Graf9972b252005-06-18 22:57:26 -0700449static inline struct sk_buff *__qdisc_dequeue_tail(struct Qdisc *sch,
450 struct sk_buff_head *list)
451{
452 struct sk_buff *skb = __skb_dequeue_tail(list);
453
454 if (likely(skb != NULL))
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700455 sch->qstats.backlog -= qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700456
457 return skb;
458}
459
460static inline struct sk_buff *qdisc_dequeue_tail(struct Qdisc *sch)
461{
462 return __qdisc_dequeue_tail(sch, &sch->q);
463}
464
Patrick McHardy48a8f512008-10-31 00:44:18 -0700465static inline struct sk_buff *qdisc_peek_head(struct Qdisc *sch)
466{
467 return skb_peek(&sch->q);
468}
469
Jarek Poplawski77be1552008-10-31 00:47:01 -0700470/* generic pseudo peek method for non-work-conserving qdisc */
471static inline struct sk_buff *qdisc_peek_dequeued(struct Qdisc *sch)
472{
473 /* we can reuse ->gso_skb because peek isn't called for root qdiscs */
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800474 if (!sch->gso_skb) {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700475 sch->gso_skb = sch->dequeue(sch);
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800476 if (sch->gso_skb)
477 /* it's still part of the queue */
478 sch->q.qlen++;
479 }
Jarek Poplawski77be1552008-10-31 00:47:01 -0700480
481 return sch->gso_skb;
482}
483
484/* use instead of qdisc->dequeue() for all qdiscs queried with ->peek() */
485static inline struct sk_buff *qdisc_dequeue_peeked(struct Qdisc *sch)
486{
487 struct sk_buff *skb = sch->gso_skb;
488
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800489 if (skb) {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700490 sch->gso_skb = NULL;
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800491 sch->q.qlen--;
492 } else {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700493 skb = sch->dequeue(sch);
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800494 }
Jarek Poplawski77be1552008-10-31 00:47:01 -0700495
496 return skb;
497}
498
Thomas Graf9972b252005-06-18 22:57:26 -0700499static inline void __qdisc_reset_queue(struct Qdisc *sch,
500 struct sk_buff_head *list)
501{
502 /*
503 * We do not know the backlog in bytes of this list, it
504 * is up to the caller to correct it
505 */
David S. Miller93245dd2008-07-17 04:03:43 -0700506 __skb_queue_purge(list);
Thomas Graf9972b252005-06-18 22:57:26 -0700507}
508
509static inline void qdisc_reset_queue(struct Qdisc *sch)
510{
511 __qdisc_reset_queue(sch, &sch->q);
512 sch->qstats.backlog = 0;
513}
514
515static inline unsigned int __qdisc_queue_drop(struct Qdisc *sch,
516 struct sk_buff_head *list)
517{
518 struct sk_buff *skb = __qdisc_dequeue_tail(sch, list);
519
520 if (likely(skb != NULL)) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700521 unsigned int len = qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700522 kfree_skb(skb);
523 return len;
524 }
525
526 return 0;
527}
528
529static inline unsigned int qdisc_queue_drop(struct Qdisc *sch)
530{
531 return __qdisc_queue_drop(sch, &sch->q);
532}
533
534static inline int qdisc_drop(struct sk_buff *skb, struct Qdisc *sch)
535{
536 kfree_skb(skb);
537 sch->qstats.drops++;
538
539 return NET_XMIT_DROP;
540}
541
542static inline int qdisc_reshape_fail(struct sk_buff *skb, struct Qdisc *sch)
543{
544 sch->qstats.drops++;
545
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700546#ifdef CONFIG_NET_CLS_ACT
Thomas Graf9972b252005-06-18 22:57:26 -0700547 if (sch->reshape_fail == NULL || sch->reshape_fail(skb, sch))
548 goto drop;
549
550 return NET_XMIT_SUCCESS;
551
552drop:
553#endif
554 kfree_skb(skb);
555 return NET_XMIT_DROP;
556}
557
Jesper Dangaard Brouere9bef552007-09-12 16:35:24 +0200558/* Length to Time (L2T) lookup in a qdisc_rate_table, to determine how
559 long it will take to send a packet given its size.
560 */
561static inline u32 qdisc_l2t(struct qdisc_rate_table* rtab, unsigned int pktlen)
562{
Jesper Dangaard Brouere08b0992007-09-12 16:36:28 +0200563 int slot = pktlen + rtab->rate.cell_align + rtab->rate.overhead;
564 if (slot < 0)
565 slot = 0;
Jesper Dangaard Brouere9bef552007-09-12 16:35:24 +0200566 slot >>= rtab->rate.cell_log;
567 if (slot > 255)
568 return (rtab->data[255]*(slot >> 8) + rtab->data[slot & 0xFF]);
569 return rtab->data[slot];
570}
571
Jamal Hadi Salim12da81d2007-10-26 02:47:23 -0700572#ifdef CONFIG_NET_CLS_ACT
573static inline struct sk_buff *skb_act_clone(struct sk_buff *skb, gfp_t gfp_mask)
574{
575 struct sk_buff *n = skb_clone(skb, gfp_mask);
576
577 if (n) {
578 n->tc_verd = SET_TC_VERD(n->tc_verd, 0);
579 n->tc_verd = CLR_TC_OK2MUNGE(n->tc_verd);
580 n->tc_verd = CLR_TC_MUNGED(n->tc_verd);
Jamal Hadi Salim12da81d2007-10-26 02:47:23 -0700581 }
582 return n;
583}
584#endif
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586#endif