blob: 9707daed761e4fd0b101cfe721d9ed61a39ec892 [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;
Eric Dumazet5d944c62010-03-31 07:06:04 +000076 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
Eric Dumazetbc135b22010-06-02 03:23:51 -070079static inline bool qdisc_is_running(struct Qdisc *qdisc)
80{
81 return test_bit(__QDISC_STATE_RUNNING, &qdisc->state);
82}
83
84static inline bool qdisc_run_begin(struct Qdisc *qdisc)
85{
86 return !test_and_set_bit(__QDISC_STATE_RUNNING, &qdisc->state);
87}
88
89static inline void qdisc_run_end(struct Qdisc *qdisc)
90{
91 clear_bit(__QDISC_STATE_RUNNING, &qdisc->state);
92}
93
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +000094struct Qdisc_class_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 /* Child qdisc manipulation */
Jarek Poplawski926e61b2009-09-15 02:53:07 -070096 struct netdev_queue * (*select_queue)(struct Qdisc *, struct tcmsg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 int (*graft)(struct Qdisc *, unsigned long cl,
98 struct Qdisc *, struct Qdisc **);
99 struct Qdisc * (*leaf)(struct Qdisc *, unsigned long cl);
Patrick McHardy43effa12006-11-29 17:35:48 -0800100 void (*qlen_notify)(struct Qdisc *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 /* Class manipulation routines */
103 unsigned long (*get)(struct Qdisc *, u32 classid);
104 void (*put)(struct Qdisc *, unsigned long);
105 int (*change)(struct Qdisc *, u32, u32,
Patrick McHardy1e904742008-01-22 22:11:17 -0800106 struct nlattr **, unsigned long *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 int (*delete)(struct Qdisc *, unsigned long);
108 void (*walk)(struct Qdisc *, struct qdisc_walker * arg);
109
110 /* Filter manipulation */
111 struct tcf_proto ** (*tcf_chain)(struct Qdisc *, unsigned long);
112 unsigned long (*bind_tcf)(struct Qdisc *, unsigned long,
113 u32 classid);
114 void (*unbind_tcf)(struct Qdisc *, unsigned long);
115
116 /* rtnetlink specific */
117 int (*dump)(struct Qdisc *, unsigned long,
118 struct sk_buff *skb, struct tcmsg*);
119 int (*dump_stats)(struct Qdisc *, unsigned long,
120 struct gnet_dump *);
121};
122
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000123struct Qdisc_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 struct Qdisc_ops *next;
Eric Dumazet20fea082007-11-14 01:44:41 -0800125 const struct Qdisc_class_ops *cl_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 char id[IFNAMSIZ];
127 int priv_size;
128
129 int (*enqueue)(struct sk_buff *, struct Qdisc *);
130 struct sk_buff * (*dequeue)(struct Qdisc *);
Jarek Poplawski90d841fd2008-10-31 00:43:45 -0700131 struct sk_buff * (*peek)(struct Qdisc *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 unsigned int (*drop)(struct Qdisc *);
133
Patrick McHardy1e904742008-01-22 22:11:17 -0800134 int (*init)(struct Qdisc *, struct nlattr *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 void (*reset)(struct Qdisc *);
136 void (*destroy)(struct Qdisc *);
Patrick McHardy1e904742008-01-22 22:11:17 -0800137 int (*change)(struct Qdisc *, struct nlattr *arg);
David S. Miller6ec1c692009-09-06 01:58:51 -0700138 void (*attach)(struct Qdisc *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 int (*dump)(struct Qdisc *, struct sk_buff *);
141 int (*dump_stats)(struct Qdisc *, struct gnet_dump *);
142
143 struct module *owner;
144};
145
146
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000147struct tcf_result {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 unsigned long class;
149 u32 classid;
150};
151
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000152struct tcf_proto_ops {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 struct tcf_proto_ops *next;
154 char kind[IFNAMSIZ];
155
156 int (*classify)(struct sk_buff*, struct tcf_proto*,
157 struct tcf_result *);
158 int (*init)(struct tcf_proto*);
159 void (*destroy)(struct tcf_proto*);
160
161 unsigned long (*get)(struct tcf_proto*, u32 handle);
162 void (*put)(struct tcf_proto*, unsigned long);
163 int (*change)(struct tcf_proto*, unsigned long,
Patrick McHardyadd93b62008-01-22 22:11:33 -0800164 u32 handle, struct nlattr **,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 unsigned long *);
166 int (*delete)(struct tcf_proto*, unsigned long);
167 void (*walk)(struct tcf_proto*, struct tcf_walker *arg);
168
169 /* rtnetlink specific */
170 int (*dump)(struct tcf_proto*, unsigned long,
171 struct sk_buff *skb, struct tcmsg*);
172
173 struct module *owner;
174};
175
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000176struct tcf_proto {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /* Fast access part */
178 struct tcf_proto *next;
179 void *root;
180 int (*classify)(struct sk_buff*, struct tcf_proto*,
181 struct tcf_result *);
Al Viro66c6f522006-11-20 18:07:51 -0800182 __be16 protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 /* All the rest */
185 u32 prio;
186 u32 classid;
187 struct Qdisc *q;
188 void *data;
189 struct tcf_proto_ops *ops;
190};
191
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700192struct qdisc_skb_cb {
193 unsigned int pkt_len;
194 char data[];
195};
196
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000197static inline int qdisc_qlen(struct Qdisc *q)
198{
199 return q->q.qlen;
200}
201
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700202static inline struct qdisc_skb_cb *qdisc_skb_cb(struct sk_buff *skb)
203{
204 return (struct qdisc_skb_cb *)skb->cb;
205}
206
David S. Miller838740002008-07-17 00:53:03 -0700207static inline spinlock_t *qdisc_lock(struct Qdisc *qdisc)
208{
209 return &qdisc->q.lock;
210}
211
David S. Miller7698b4f2008-07-16 01:42:40 -0700212static inline struct Qdisc *qdisc_root(struct Qdisc *qdisc)
213{
214 return qdisc->dev_queue->qdisc;
215}
216
Jarek Poplawski2540e052008-08-21 05:11:14 -0700217static inline struct Qdisc *qdisc_root_sleeping(struct Qdisc *qdisc)
218{
219 return qdisc->dev_queue->qdisc_sleeping;
220}
221
David S. Miller7e43f112008-08-02 23:27:37 -0700222/* The qdisc root lock is a mechanism by which to top level
223 * of a qdisc tree can be locked from any qdisc node in the
224 * forest. This allows changing the configuration of some
225 * aspect of the qdisc tree while blocking out asynchronous
226 * qdisc access in the packet processing paths.
227 *
228 * It is only legal to do this when the root will not change
229 * on us. Otherwise we'll potentially lock the wrong qdisc
230 * root. This is enforced by holding the RTNL semaphore, which
231 * all users of this lock accessor must do.
232 */
David S. Miller7698b4f2008-07-16 01:42:40 -0700233static inline spinlock_t *qdisc_root_lock(struct Qdisc *qdisc)
234{
235 struct Qdisc *root = qdisc_root(qdisc);
236
David S. Miller7e43f112008-08-02 23:27:37 -0700237 ASSERT_RTNL();
David S. Miller838740002008-07-17 00:53:03 -0700238 return qdisc_lock(root);
David S. Miller7698b4f2008-07-16 01:42:40 -0700239}
240
Jarek Poplawskif6f9b932008-08-27 02:25:17 -0700241static inline spinlock_t *qdisc_root_sleeping_lock(struct Qdisc *qdisc)
242{
243 struct Qdisc *root = qdisc_root_sleeping(qdisc);
244
245 ASSERT_RTNL();
246 return qdisc_lock(root);
247}
248
David S. Miller5ce2d482008-07-08 17:06:30 -0700249static inline struct net_device *qdisc_dev(struct Qdisc *qdisc)
250{
251 return qdisc->dev_queue->dev;
252}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
David S. Miller78a5b302008-07-16 03:12:24 -0700254static inline void sch_tree_lock(struct Qdisc *q)
255{
Jarek Poplawskife439dd2008-08-27 02:27:10 -0700256 spin_lock_bh(qdisc_root_sleeping_lock(q));
David S. Miller78a5b302008-07-16 03:12:24 -0700257}
258
259static inline void sch_tree_unlock(struct Qdisc *q)
260{
Jarek Poplawskife439dd2008-08-27 02:27:10 -0700261 spin_unlock_bh(qdisc_root_sleeping_lock(q));
David S. Miller78a5b302008-07-16 03:12:24 -0700262}
263
264#define tcf_tree_lock(tp) sch_tree_lock((tp)->q)
265#define tcf_tree_unlock(tp) sch_tree_unlock((tp)->q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Thomas Grafe41a33e2005-07-05 14:14:30 -0700267extern struct Qdisc noop_qdisc;
268extern struct Qdisc_ops noop_qdisc_ops;
David S. Miller6ec1c692009-09-06 01:58:51 -0700269extern struct Qdisc_ops pfifo_fast_ops;
270extern struct Qdisc_ops mq_qdisc_ops;
Thomas Grafe41a33e2005-07-05 14:14:30 -0700271
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000272struct Qdisc_class_common {
Patrick McHardy6fe1c7a2008-07-05 23:21:31 -0700273 u32 classid;
274 struct hlist_node hnode;
275};
276
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000277struct Qdisc_class_hash {
Patrick McHardy6fe1c7a2008-07-05 23:21:31 -0700278 struct hlist_head *hash;
279 unsigned int hashsize;
280 unsigned int hashmask;
281 unsigned int hashelems;
282};
283
284static inline unsigned int qdisc_class_hash(u32 id, u32 mask)
285{
286 id ^= id >> 8;
287 id ^= id >> 4;
288 return id & mask;
289}
290
291static inline struct Qdisc_class_common *
292qdisc_class_find(struct Qdisc_class_hash *hash, u32 id)
293{
294 struct Qdisc_class_common *cl;
295 struct hlist_node *n;
296 unsigned int h;
297
298 h = qdisc_class_hash(id, hash->hashmask);
299 hlist_for_each_entry(cl, n, &hash->hash[h], hnode) {
300 if (cl->classid == id)
301 return cl;
302 }
303 return NULL;
304}
305
306extern int qdisc_class_hash_init(struct Qdisc_class_hash *);
307extern void qdisc_class_hash_insert(struct Qdisc_class_hash *, struct Qdisc_class_common *);
308extern void qdisc_class_hash_remove(struct Qdisc_class_hash *, struct Qdisc_class_common *);
309extern void qdisc_class_hash_grow(struct Qdisc *, struct Qdisc_class_hash *);
310extern void qdisc_class_hash_destroy(struct Qdisc_class_hash *);
311
Thomas Grafe41a33e2005-07-05 14:14:30 -0700312extern void dev_init_scheduler(struct net_device *dev);
313extern void dev_shutdown(struct net_device *dev);
314extern void dev_activate(struct net_device *dev);
315extern void dev_deactivate(struct net_device *dev);
Patrick McHardy589983c2009-09-04 06:41:20 +0000316extern struct Qdisc *dev_graft_qdisc(struct netdev_queue *dev_queue,
317 struct Qdisc *qdisc);
Thomas Grafe41a33e2005-07-05 14:14:30 -0700318extern void qdisc_reset(struct Qdisc *qdisc);
319extern void qdisc_destroy(struct Qdisc *qdisc);
Patrick McHardy43effa12006-11-29 17:35:48 -0800320extern void qdisc_tree_decrease_qlen(struct Qdisc *qdisc, unsigned int n);
David S. Miller5ce2d482008-07-08 17:06:30 -0700321extern struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
David S. Millerbb949fb2008-07-08 16:55:56 -0700322 struct Qdisc_ops *ops);
Thomas Grafe41a33e2005-07-05 14:14:30 -0700323extern struct Qdisc *qdisc_create_dflt(struct net_device *dev,
David S. Millerbb949fb2008-07-08 16:55:56 -0700324 struct netdev_queue *dev_queue,
Patrick McHardy9f9afec2006-11-29 17:35:18 -0800325 struct Qdisc_ops *ops, u32 parentid);
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700326extern void qdisc_calculate_pkt_len(struct sk_buff *skb,
327 struct qdisc_size_table *stab);
Patrick McHardya48b5a62007-03-23 11:29:43 -0700328extern void tcf_destroy(struct tcf_proto *tp);
Patrick McHardyff31ab52008-07-01 19:52:38 -0700329extern void tcf_destroy_chain(struct tcf_proto **fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
David S. Miller5aa70992008-07-08 22:59:10 -0700331/* Reset all TX qdiscs of a device. */
332static inline void qdisc_reset_all_tx(struct net_device *dev)
333{
David S. Millere8a04642008-07-17 00:34:19 -0700334 unsigned int i;
335 for (i = 0; i < dev->num_tx_queues; i++)
336 qdisc_reset(netdev_get_tx_queue(dev, i)->qdisc);
David S. Miller5aa70992008-07-08 22:59:10 -0700337}
338
David S. Miller3e745dd2008-07-08 23:00:25 -0700339/* Are all TX queues of the device empty? */
340static inline bool qdisc_all_tx_empty(const struct net_device *dev)
341{
David S. Millere8a04642008-07-17 00:34:19 -0700342 unsigned int i;
343 for (i = 0; i < dev->num_tx_queues; i++) {
344 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
345 const struct Qdisc *q = txq->qdisc;
David S. Miller3e745dd2008-07-08 23:00:25 -0700346
David S. Millere8a04642008-07-17 00:34:19 -0700347 if (q->q.qlen)
348 return false;
349 }
350 return true;
David S. Miller3e745dd2008-07-08 23:00:25 -0700351}
352
David S. Miller6fa98642008-07-08 23:01:06 -0700353/* Are any of the TX qdiscs changing? */
354static inline bool qdisc_tx_changing(struct net_device *dev)
355{
David S. Millere8a04642008-07-17 00:34:19 -0700356 unsigned int i;
357 for (i = 0; i < dev->num_tx_queues; i++) {
358 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
359 if (txq->qdisc != txq->qdisc_sleeping)
360 return true;
361 }
362 return false;
David S. Miller6fa98642008-07-08 23:01:06 -0700363}
364
David S. Millere8a04642008-07-17 00:34:19 -0700365/* Is the device using the noop qdisc on all queues? */
David S. Miller05297942008-07-08 23:01:27 -0700366static inline bool qdisc_tx_is_noop(const struct net_device *dev)
367{
David S. Millere8a04642008-07-17 00:34:19 -0700368 unsigned int i;
369 for (i = 0; i < dev->num_tx_queues; i++) {
370 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
371 if (txq->qdisc != &noop_qdisc)
372 return false;
373 }
374 return true;
David S. Miller05297942008-07-08 23:01:27 -0700375}
376
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700377static inline unsigned int qdisc_pkt_len(struct sk_buff *skb)
378{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700379 return qdisc_skb_cb(skb)->pkt_len;
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700380}
381
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700382/* additional qdisc xmit flags (NET_XMIT_MASK in linux/netdevice.h) */
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700383enum net_xmit_qdisc_t {
384 __NET_XMIT_STOLEN = 0x00010000,
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700385 __NET_XMIT_BYPASS = 0x00020000,
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700386};
387
Jarek Poplawskic27f3392008-08-04 22:39:11 -0700388#ifdef CONFIG_NET_CLS_ACT
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700389#define net_xmit_drop_count(e) ((e) & __NET_XMIT_STOLEN ? 0 : 1)
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700390#else
391#define net_xmit_drop_count(e) (1)
392#endif
393
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700394static inline int qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch)
395{
David S. Miller3a682fb2008-07-20 18:13:01 -0700396#ifdef CONFIG_NET_SCHED
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700397 if (sch->stab)
398 qdisc_calculate_pkt_len(skb, sch->stab);
David S. Miller3a682fb2008-07-20 18:13:01 -0700399#endif
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700400 return sch->enqueue(skb, sch);
401}
402
403static inline int qdisc_enqueue_root(struct sk_buff *skb, struct Qdisc *sch)
404{
Jussi Kivilinna175f9c12008-07-20 00:08:47 -0700405 qdisc_skb_cb(skb)->pkt_len = skb->len;
Jarek Poplawski378a2f02008-08-04 22:31:03 -0700406 return qdisc_enqueue(skb, sch) & NET_XMIT_MASK;
Jussi Kivilinna5f861732008-07-20 00:08:04 -0700407}
408
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000409static inline void __qdisc_update_bstats(struct Qdisc *sch, unsigned int len)
410{
411 sch->bstats.bytes += len;
412 sch->bstats.packets++;
413}
414
Thomas Graf9972b252005-06-18 22:57:26 -0700415static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch,
416 struct sk_buff_head *list)
417{
418 __skb_queue_tail(list, skb);
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700419 sch->qstats.backlog += qdisc_pkt_len(skb);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +0000420 __qdisc_update_bstats(sch, qdisc_pkt_len(skb));
Thomas Graf9972b252005-06-18 22:57:26 -0700421
422 return NET_XMIT_SUCCESS;
423}
424
425static inline int qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch)
426{
427 return __qdisc_enqueue_tail(skb, sch, &sch->q);
428}
429
430static inline struct sk_buff *__qdisc_dequeue_head(struct Qdisc *sch,
431 struct sk_buff_head *list)
432{
433 struct sk_buff *skb = __skb_dequeue(list);
434
435 if (likely(skb != NULL))
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700436 sch->qstats.backlog -= qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700437
438 return skb;
439}
440
441static inline struct sk_buff *qdisc_dequeue_head(struct Qdisc *sch)
442{
443 return __qdisc_dequeue_head(sch, &sch->q);
444}
445
Hagen Paul Pfeifer57dbb2d2010-01-24 12:30:59 +0000446static inline unsigned int __qdisc_queue_drop_head(struct Qdisc *sch,
447 struct sk_buff_head *list)
448{
449 struct sk_buff *skb = __qdisc_dequeue_head(sch, list);
450
451 if (likely(skb != NULL)) {
452 unsigned int len = qdisc_pkt_len(skb);
453 kfree_skb(skb);
454 return len;
455 }
456
457 return 0;
458}
459
460static inline unsigned int qdisc_queue_drop_head(struct Qdisc *sch)
461{
462 return __qdisc_queue_drop_head(sch, &sch->q);
463}
464
Thomas Graf9972b252005-06-18 22:57:26 -0700465static inline struct sk_buff *__qdisc_dequeue_tail(struct Qdisc *sch,
466 struct sk_buff_head *list)
467{
468 struct sk_buff *skb = __skb_dequeue_tail(list);
469
470 if (likely(skb != NULL))
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700471 sch->qstats.backlog -= qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700472
473 return skb;
474}
475
476static inline struct sk_buff *qdisc_dequeue_tail(struct Qdisc *sch)
477{
478 return __qdisc_dequeue_tail(sch, &sch->q);
479}
480
Patrick McHardy48a8f512008-10-31 00:44:18 -0700481static inline struct sk_buff *qdisc_peek_head(struct Qdisc *sch)
482{
483 return skb_peek(&sch->q);
484}
485
Jarek Poplawski77be1552008-10-31 00:47:01 -0700486/* generic pseudo peek method for non-work-conserving qdisc */
487static inline struct sk_buff *qdisc_peek_dequeued(struct Qdisc *sch)
488{
489 /* we can reuse ->gso_skb because peek isn't called for root qdiscs */
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800490 if (!sch->gso_skb) {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700491 sch->gso_skb = sch->dequeue(sch);
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800492 if (sch->gso_skb)
493 /* it's still part of the queue */
494 sch->q.qlen++;
495 }
Jarek Poplawski77be1552008-10-31 00:47:01 -0700496
497 return sch->gso_skb;
498}
499
500/* use instead of qdisc->dequeue() for all qdiscs queried with ->peek() */
501static inline struct sk_buff *qdisc_dequeue_peeked(struct Qdisc *sch)
502{
503 struct sk_buff *skb = sch->gso_skb;
504
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800505 if (skb) {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700506 sch->gso_skb = NULL;
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800507 sch->q.qlen--;
508 } else {
Jarek Poplawski77be1552008-10-31 00:47:01 -0700509 skb = sch->dequeue(sch);
Jarek Poplawski61c9eaf2008-11-05 16:02:34 -0800510 }
Jarek Poplawski77be1552008-10-31 00:47:01 -0700511
512 return skb;
513}
514
Thomas Graf9972b252005-06-18 22:57:26 -0700515static inline void __qdisc_reset_queue(struct Qdisc *sch,
516 struct sk_buff_head *list)
517{
518 /*
519 * We do not know the backlog in bytes of this list, it
520 * is up to the caller to correct it
521 */
David S. Miller93245dd2008-07-17 04:03:43 -0700522 __skb_queue_purge(list);
Thomas Graf9972b252005-06-18 22:57:26 -0700523}
524
525static inline void qdisc_reset_queue(struct Qdisc *sch)
526{
527 __qdisc_reset_queue(sch, &sch->q);
528 sch->qstats.backlog = 0;
529}
530
531static inline unsigned int __qdisc_queue_drop(struct Qdisc *sch,
532 struct sk_buff_head *list)
533{
534 struct sk_buff *skb = __qdisc_dequeue_tail(sch, list);
535
536 if (likely(skb != NULL)) {
Jussi Kivilinna0abf77e2008-07-20 00:08:27 -0700537 unsigned int len = qdisc_pkt_len(skb);
Thomas Graf9972b252005-06-18 22:57:26 -0700538 kfree_skb(skb);
539 return len;
540 }
541
542 return 0;
543}
544
545static inline unsigned int qdisc_queue_drop(struct Qdisc *sch)
546{
547 return __qdisc_queue_drop(sch, &sch->q);
548}
549
550static inline int qdisc_drop(struct sk_buff *skb, struct Qdisc *sch)
551{
552 kfree_skb(skb);
553 sch->qstats.drops++;
554
555 return NET_XMIT_DROP;
556}
557
558static inline int qdisc_reshape_fail(struct sk_buff *skb, struct Qdisc *sch)
559{
560 sch->qstats.drops++;
561
Patrick McHardyc3bc7cf2007-07-15 00:03:05 -0700562#ifdef CONFIG_NET_CLS_ACT
Thomas Graf9972b252005-06-18 22:57:26 -0700563 if (sch->reshape_fail == NULL || sch->reshape_fail(skb, sch))
564 goto drop;
565
566 return NET_XMIT_SUCCESS;
567
568drop:
569#endif
570 kfree_skb(skb);
571 return NET_XMIT_DROP;
572}
573
Jesper Dangaard Brouere9bef552007-09-12 16:35:24 +0200574/* Length to Time (L2T) lookup in a qdisc_rate_table, to determine how
575 long it will take to send a packet given its size.
576 */
577static inline u32 qdisc_l2t(struct qdisc_rate_table* rtab, unsigned int pktlen)
578{
Jesper Dangaard Brouere08b0992007-09-12 16:36:28 +0200579 int slot = pktlen + rtab->rate.cell_align + rtab->rate.overhead;
580 if (slot < 0)
581 slot = 0;
Jesper Dangaard Brouere9bef552007-09-12 16:35:24 +0200582 slot >>= rtab->rate.cell_log;
583 if (slot > 255)
584 return (rtab->data[255]*(slot >> 8) + rtab->data[slot & 0xFF]);
585 return rtab->data[slot];
586}
587
Jamal Hadi Salim12da81d2007-10-26 02:47:23 -0700588#ifdef CONFIG_NET_CLS_ACT
589static inline struct sk_buff *skb_act_clone(struct sk_buff *skb, gfp_t gfp_mask)
590{
591 struct sk_buff *n = skb_clone(skb, gfp_mask);
592
593 if (n) {
594 n->tc_verd = SET_TC_VERD(n->tc_verd, 0);
595 n->tc_verd = CLR_TC_OK2MUNGE(n->tc_verd);
596 n->tc_verd = CLR_TC_MUNGED(n->tc_verd);
Jamal Hadi Salim12da81d2007-10-26 02:47:23 -0700597 }
598 return n;
599}
600#endif
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602#endif