]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - include/net/sch_generic.h
tipc: don't reset stale broadcast send link
[mirror_ubuntu-hirsute-kernel.git] / include / net / sch_generic.h
CommitLineData
1da177e4
LT
1#ifndef __NET_SCHED_GENERIC_H
2#define __NET_SCHED_GENERIC_H
3
1da177e4
LT
4#include <linux/netdevice.h>
5#include <linux/types.h>
6#include <linux/rcupdate.h>
1da177e4
LT
7#include <linux/pkt_sched.h>
8#include <linux/pkt_cls.h>
22e0f8b9 9#include <linux/percpu.h>
5772e9a3 10#include <linux/dynamic_queue_limits.h>
5bc17018 11#include <linux/list.h>
7b936405 12#include <linux/refcount.h>
1da177e4 13#include <net/gen_stats.h>
be577ddc 14#include <net/rtnetlink.h>
1da177e4
LT
15
16struct Qdisc_ops;
17struct qdisc_walker;
18struct tcf_walker;
19struct module;
20
fd2c3ef7 21struct qdisc_rate_table {
1da177e4
LT
22 struct tc_ratespec rate;
23 u32 data[256];
24 struct qdisc_rate_table *next;
25 int refcnt;
26};
27
fd2c3ef7 28enum qdisc_state_t {
37437bb2 29 __QDISC_STATE_SCHED,
a9312ae8 30 __QDISC_STATE_DEACTIVATED,
e2627c8c
DM
31};
32
175f9c1b 33struct qdisc_size_table {
a2da570d 34 struct rcu_head rcu;
175f9c1b
JK
35 struct list_head list;
36 struct tc_sizespec szopts;
37 int refcnt;
38 u16 data[];
39};
40
48da34b7
FW
41/* similar to sk_buff_head, but skb->prev pointer is undefined. */
42struct qdisc_skb_head {
43 struct sk_buff *head;
44 struct sk_buff *tail;
45 __u32 qlen;
46 spinlock_t lock;
47};
48
fd2c3ef7 49struct Qdisc {
520ac30f
ED
50 int (*enqueue)(struct sk_buff *skb,
51 struct Qdisc *sch,
52 struct sk_buff **to_free);
53 struct sk_buff * (*dequeue)(struct Qdisc *sch);
05bdd2f1 54 unsigned int flags;
b00355db 55#define TCQ_F_BUILTIN 1
fd245a4a
ED
56#define TCQ_F_INGRESS 2
57#define TCQ_F_CAN_BYPASS 4
58#define TCQ_F_MQROOT 8
1abbe139
ED
59#define TCQ_F_ONETXQUEUE 0x10 /* dequeue_skb() can assume all skbs are for
60 * q->dev_queue : It can test
61 * netif_xmit_frozen_or_stopped() before
62 * dequeueing next packet.
63 * Its true for MQ/MQPRIO slaves, or non
64 * multiqueue device.
65 */
b00355db 66#define TCQ_F_WARN_NONWC (1 << 16)
22e0f8b9 67#define TCQ_F_CPUSTATS 0x20 /* run using percpu statistics */
4eaf3b84
ED
68#define TCQ_F_NOPARENT 0x40 /* root of its hierarchy :
69 * qdisc_tree_decrease_qlen() should stop.
70 */
49b49971 71#define TCQ_F_INVISIBLE 0x80 /* invisible by default in dump */
45203a3b 72 u32 limit;
05bdd2f1 73 const struct Qdisc_ops *ops;
a2da570d 74 struct qdisc_size_table __rcu *stab;
59cc1f61 75 struct hlist_node hash;
1da177e4
LT
76 u32 handle;
77 u32 parent;
72b25a91
DM
78 void *u32_node;
79
5e140dfc 80 struct netdev_queue *dev_queue;
5e140dfc 81
1c0d32fd 82 struct net_rate_estimator __rcu *rate_est;
0d32ef8c
ED
83 struct gnet_stats_basic_cpu __percpu *cpu_bstats;
84 struct gnet_stats_queue __percpu *cpu_qstats;
85
5e140dfc
ED
86 /*
87 * For performance sake on SMP, we put highly modified fields at the end
88 */
4d202a0d 89 struct sk_buff *gso_skb ____cacheline_aligned_in_smp;
48da34b7 90 struct qdisc_skb_head q;
0d32ef8c 91 struct gnet_stats_basic_packed bstats;
f9eb8aea 92 seqcount_t running;
0d32ef8c 93 struct gnet_stats_queue qstats;
4d202a0d
ED
94 unsigned long state;
95 struct Qdisc *next_sched;
96 struct sk_buff *skb_bad_txq;
79640a4c 97 struct rcu_head rcu_head;
45203a3b 98 int padded;
7b936405 99 refcount_t refcnt;
45203a3b
ED
100
101 spinlock_t busylock ____cacheline_aligned_in_smp;
1da177e4
LT
102};
103
fd245a4a 104static inline bool qdisc_is_running(const struct Qdisc *qdisc)
bc135b23 105{
f9eb8aea 106 return (raw_read_seqcount(&qdisc->running) & 1) ? true : false;
bc135b23
ED
107}
108
109static inline bool qdisc_run_begin(struct Qdisc *qdisc)
110{
fd245a4a
ED
111 if (qdisc_is_running(qdisc))
112 return false;
52fbb290
ED
113 /* Variant of write_seqcount_begin() telling lockdep a trylock
114 * was attempted.
115 */
116 raw_write_seqcount_begin(&qdisc->running);
117 seqcount_acquire(&qdisc->running.dep_map, 0, 1, _RET_IP_);
fd245a4a 118 return true;
bc135b23
ED
119}
120
121static inline void qdisc_run_end(struct Qdisc *qdisc)
122{
f9eb8aea 123 write_seqcount_end(&qdisc->running);
fd245a4a
ED
124}
125
5772e9a3
JDB
126static inline bool qdisc_may_bulk(const struct Qdisc *qdisc)
127{
128 return qdisc->flags & TCQ_F_ONETXQUEUE;
129}
130
131static inline int qdisc_avail_bulklimit(const struct netdev_queue *txq)
132{
133#ifdef CONFIG_BQL
134 /* Non-BQL migrated drivers will return 0, too. */
135 return dql_avail(&txq->dql);
136#else
137 return 0;
138#endif
139}
140
fd2c3ef7 141struct Qdisc_class_ops {
1da177e4 142 /* Child qdisc manipulation */
926e61b7 143 struct netdev_queue * (*select_queue)(struct Qdisc *, struct tcmsg *);
1da177e4
LT
144 int (*graft)(struct Qdisc *, unsigned long cl,
145 struct Qdisc *, struct Qdisc **);
146 struct Qdisc * (*leaf)(struct Qdisc *, unsigned long cl);
43effa1e 147 void (*qlen_notify)(struct Qdisc *, unsigned long);
1da177e4
LT
148
149 /* Class manipulation routines */
150 unsigned long (*get)(struct Qdisc *, u32 classid);
151 void (*put)(struct Qdisc *, unsigned long);
152 int (*change)(struct Qdisc *, u32, u32,
1e90474c 153 struct nlattr **, unsigned long *);
1da177e4
LT
154 int (*delete)(struct Qdisc *, unsigned long);
155 void (*walk)(struct Qdisc *, struct qdisc_walker * arg);
156
157 /* Filter manipulation */
6529eaba 158 struct tcf_block * (*tcf_block)(struct Qdisc *, unsigned long);
1da177e4
LT
159 unsigned long (*bind_tcf)(struct Qdisc *, unsigned long,
160 u32 classid);
161 void (*unbind_tcf)(struct Qdisc *, unsigned long);
162
163 /* rtnetlink specific */
164 int (*dump)(struct Qdisc *, unsigned long,
165 struct sk_buff *skb, struct tcmsg*);
166 int (*dump_stats)(struct Qdisc *, unsigned long,
167 struct gnet_dump *);
168};
169
fd2c3ef7 170struct Qdisc_ops {
1da177e4 171 struct Qdisc_ops *next;
20fea08b 172 const struct Qdisc_class_ops *cl_ops;
1da177e4
LT
173 char id[IFNAMSIZ];
174 int priv_size;
175
520ac30f
ED
176 int (*enqueue)(struct sk_buff *skb,
177 struct Qdisc *sch,
178 struct sk_buff **to_free);
1da177e4 179 struct sk_buff * (*dequeue)(struct Qdisc *);
90d841fd 180 struct sk_buff * (*peek)(struct Qdisc *);
1da177e4 181
1e90474c 182 int (*init)(struct Qdisc *, struct nlattr *arg);
1da177e4
LT
183 void (*reset)(struct Qdisc *);
184 void (*destroy)(struct Qdisc *);
1e90474c 185 int (*change)(struct Qdisc *, struct nlattr *arg);
6ec1c69a 186 void (*attach)(struct Qdisc *);
1da177e4
LT
187
188 int (*dump)(struct Qdisc *, struct sk_buff *);
189 int (*dump_stats)(struct Qdisc *, struct gnet_dump *);
190
191 struct module *owner;
192};
193
194
fd2c3ef7 195struct tcf_result {
db50514f
JP
196 union {
197 struct {
198 unsigned long class;
199 u32 classid;
200 };
201 const struct tcf_proto *goto_tp;
202 };
1da177e4
LT
203};
204
fd2c3ef7 205struct tcf_proto_ops {
36272874 206 struct list_head head;
1da177e4
LT
207 char kind[IFNAMSIZ];
208
dc7f9f6e
ED
209 int (*classify)(struct sk_buff *,
210 const struct tcf_proto *,
211 struct tcf_result *);
1da177e4 212 int (*init)(struct tcf_proto*);
763dbf63 213 void (*destroy)(struct tcf_proto*);
1da177e4 214
8113c095 215 void* (*get)(struct tcf_proto*, u32 handle);
c1b52739 216 int (*change)(struct net *net, struct sk_buff *,
af4c6641 217 struct tcf_proto*, unsigned long,
add93b61 218 u32 handle, struct nlattr **,
8113c095
WC
219 void **, bool);
220 int (*delete)(struct tcf_proto*, void *, bool*);
1da177e4
LT
221 void (*walk)(struct tcf_proto*, struct tcf_walker *arg);
222
223 /* rtnetlink specific */
8113c095 224 int (*dump)(struct net*, struct tcf_proto*, void *,
1da177e4
LT
225 struct sk_buff *skb, struct tcmsg*);
226
227 struct module *owner;
228};
229
fd2c3ef7 230struct tcf_proto {
1da177e4 231 /* Fast access part */
25d8c0d5
JF
232 struct tcf_proto __rcu *next;
233 void __rcu *root;
dc7f9f6e
ED
234 int (*classify)(struct sk_buff *,
235 const struct tcf_proto *,
236 struct tcf_result *);
66c6f529 237 __be16 protocol;
1da177e4
LT
238
239 /* All the rest */
240 u32 prio;
241 u32 classid;
242 struct Qdisc *q;
243 void *data;
dc7f9f6e 244 const struct tcf_proto_ops *ops;
5bc17018 245 struct tcf_chain *chain;
25d8c0d5 246 struct rcu_head rcu;
1da177e4
LT
247};
248
175f9c1b
JK
249struct qdisc_skb_cb {
250 unsigned int pkt_len;
df4ab5b3 251 u16 slave_dev_queue_mapping;
045efa82 252 u16 tc_classid;
25711786
ED
253#define QDISC_CB_PRIV_LEN 20
254 unsigned char data[QDISC_CB_PRIV_LEN];
175f9c1b
JK
255};
256
2190d1d0
JP
257struct tcf_chain {
258 struct tcf_proto __rcu *filter_chain;
6529eaba 259 struct tcf_proto __rcu **p_filter_chain;
5bc17018
JP
260 struct list_head list;
261 struct tcf_block *block;
262 u32 index; /* chain index */
263 unsigned int refcnt;
6529eaba
JP
264};
265
2190d1d0 266struct tcf_block {
5bc17018 267 struct list_head chain_list;
2190d1d0
JP
268};
269
16bda13d
DM
270static inline void qdisc_cb_private_validate(const struct sk_buff *skb, int sz)
271{
272 struct qdisc_skb_cb *qcb;
5ee31c68
ED
273
274 BUILD_BUG_ON(sizeof(skb->cb) < offsetof(struct qdisc_skb_cb, data) + sz);
16bda13d
DM
275 BUILD_BUG_ON(sizeof(qcb->data) < sz);
276}
277
05bdd2f1 278static inline int qdisc_qlen(const struct Qdisc *q)
bbd8a0d3
KK
279{
280 return q->q.qlen;
281}
282
bfe0d029 283static inline struct qdisc_skb_cb *qdisc_skb_cb(const struct sk_buff *skb)
175f9c1b
JK
284{
285 return (struct qdisc_skb_cb *)skb->cb;
286}
287
83874000
DM
288static inline spinlock_t *qdisc_lock(struct Qdisc *qdisc)
289{
290 return &qdisc->q.lock;
291}
292
05bdd2f1 293static inline struct Qdisc *qdisc_root(const struct Qdisc *qdisc)
7698b4fc 294{
46e5da40
JF
295 struct Qdisc *q = rcu_dereference_rtnl(qdisc->dev_queue->qdisc);
296
297 return q;
7698b4fc
DM
298}
299
05bdd2f1 300static inline struct Qdisc *qdisc_root_sleeping(const struct Qdisc *qdisc)
2540e051
JP
301{
302 return qdisc->dev_queue->qdisc_sleeping;
303}
304
7e43f112
DM
305/* The qdisc root lock is a mechanism by which to top level
306 * of a qdisc tree can be locked from any qdisc node in the
307 * forest. This allows changing the configuration of some
308 * aspect of the qdisc tree while blocking out asynchronous
309 * qdisc access in the packet processing paths.
310 *
311 * It is only legal to do this when the root will not change
312 * on us. Otherwise we'll potentially lock the wrong qdisc
313 * root. This is enforced by holding the RTNL semaphore, which
314 * all users of this lock accessor must do.
315 */
05bdd2f1 316static inline spinlock_t *qdisc_root_lock(const struct Qdisc *qdisc)
7698b4fc
DM
317{
318 struct Qdisc *root = qdisc_root(qdisc);
319
7e43f112 320 ASSERT_RTNL();
83874000 321 return qdisc_lock(root);
7698b4fc
DM
322}
323
05bdd2f1 324static inline spinlock_t *qdisc_root_sleeping_lock(const struct Qdisc *qdisc)
f6f9b93f
JP
325{
326 struct Qdisc *root = qdisc_root_sleeping(qdisc);
327
328 ASSERT_RTNL();
329 return qdisc_lock(root);
330}
331
edb09eb1
ED
332static inline seqcount_t *qdisc_root_sleeping_running(const struct Qdisc *qdisc)
333{
334 struct Qdisc *root = qdisc_root_sleeping(qdisc);
335
336 ASSERT_RTNL();
337 return &root->running;
338}
339
05bdd2f1 340static inline struct net_device *qdisc_dev(const struct Qdisc *qdisc)
5ce2d488
DM
341{
342 return qdisc->dev_queue->dev;
343}
1da177e4 344
05bdd2f1 345static inline void sch_tree_lock(const struct Qdisc *q)
78a5b30b 346{
fe439dd0 347 spin_lock_bh(qdisc_root_sleeping_lock(q));
78a5b30b
DM
348}
349
05bdd2f1 350static inline void sch_tree_unlock(const struct Qdisc *q)
78a5b30b 351{
fe439dd0 352 spin_unlock_bh(qdisc_root_sleeping_lock(q));
78a5b30b
DM
353}
354
355#define tcf_tree_lock(tp) sch_tree_lock((tp)->q)
356#define tcf_tree_unlock(tp) sch_tree_unlock((tp)->q)
1da177e4 357
e41a33e6
TG
358extern struct Qdisc noop_qdisc;
359extern struct Qdisc_ops noop_qdisc_ops;
6ec1c69a
DM
360extern struct Qdisc_ops pfifo_fast_ops;
361extern struct Qdisc_ops mq_qdisc_ops;
d66d6c31 362extern struct Qdisc_ops noqueue_qdisc_ops;
6da7c8fc 363extern const struct Qdisc_ops *default_qdisc_ops;
1f27cde3
ED
364static inline const struct Qdisc_ops *
365get_default_qdisc_ops(const struct net_device *dev, int ntx)
366{
367 return ntx < dev->real_num_tx_queues ?
368 default_qdisc_ops : &pfifo_fast_ops;
369}
e41a33e6 370
fd2c3ef7 371struct Qdisc_class_common {
6fe1c7a5
PM
372 u32 classid;
373 struct hlist_node hnode;
374};
375
fd2c3ef7 376struct Qdisc_class_hash {
6fe1c7a5
PM
377 struct hlist_head *hash;
378 unsigned int hashsize;
379 unsigned int hashmask;
380 unsigned int hashelems;
381};
382
383static inline unsigned int qdisc_class_hash(u32 id, u32 mask)
384{
385 id ^= id >> 8;
386 id ^= id >> 4;
387 return id & mask;
388}
389
390static inline struct Qdisc_class_common *
05bdd2f1 391qdisc_class_find(const struct Qdisc_class_hash *hash, u32 id)
6fe1c7a5
PM
392{
393 struct Qdisc_class_common *cl;
6fe1c7a5
PM
394 unsigned int h;
395
396 h = qdisc_class_hash(id, hash->hashmask);
b67bfe0d 397 hlist_for_each_entry(cl, &hash->hash[h], hnode) {
6fe1c7a5
PM
398 if (cl->classid == id)
399 return cl;
400 }
401 return NULL;
402}
403
5c15257f
JP
404int qdisc_class_hash_init(struct Qdisc_class_hash *);
405void qdisc_class_hash_insert(struct Qdisc_class_hash *,
406 struct Qdisc_class_common *);
407void qdisc_class_hash_remove(struct Qdisc_class_hash *,
408 struct Qdisc_class_common *);
409void qdisc_class_hash_grow(struct Qdisc *, struct Qdisc_class_hash *);
410void qdisc_class_hash_destroy(struct Qdisc_class_hash *);
411
412void dev_init_scheduler(struct net_device *dev);
413void dev_shutdown(struct net_device *dev);
414void dev_activate(struct net_device *dev);
415void dev_deactivate(struct net_device *dev);
416void dev_deactivate_many(struct list_head *head);
417struct Qdisc *dev_graft_qdisc(struct netdev_queue *dev_queue,
418 struct Qdisc *qdisc);
419void qdisc_reset(struct Qdisc *qdisc);
420void qdisc_destroy(struct Qdisc *qdisc);
2ccccf5f
WC
421void qdisc_tree_reduce_backlog(struct Qdisc *qdisc, unsigned int n,
422 unsigned int len);
5c15257f 423struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
d2a7f269 424 const struct Qdisc_ops *ops);
5c15257f 425struct Qdisc *qdisc_create_dflt(struct netdev_queue *dev_queue,
d2a7f269 426 const struct Qdisc_ops *ops, u32 parentid);
5c15257f
JP
427void __qdisc_calculate_pkt_len(struct sk_buff *skb,
428 const struct qdisc_size_table *stab);
27b29f63 429int skb_do_redirect(struct sk_buff *);
1da177e4 430
a5135bcf
WB
431static inline void skb_reset_tc(struct sk_buff *skb)
432{
433#ifdef CONFIG_NET_CLS_ACT
bc31c905 434 skb->tc_redirected = 0;
a5135bcf
WB
435#endif
436}
437
fdc5432a
DB
438static inline bool skb_at_tc_ingress(const struct sk_buff *skb)
439{
440#ifdef CONFIG_NET_CLS_ACT
8dc07fdb 441 return skb->tc_at_ingress;
fdc5432a
DB
442#else
443 return false;
444#endif
445}
446
e7246e12
WB
447static inline bool skb_skip_tc_classify(struct sk_buff *skb)
448{
449#ifdef CONFIG_NET_CLS_ACT
450 if (skb->tc_skip_classify) {
451 skb->tc_skip_classify = 0;
452 return true;
453 }
454#endif
455 return false;
456}
457
f0796d5c
JF
458/* Reset all TX qdiscs greater then index of a device. */
459static inline void qdisc_reset_all_tx_gt(struct net_device *dev, unsigned int i)
5aa70995 460{
4ef6acff
JF
461 struct Qdisc *qdisc;
462
f0796d5c 463 for (; i < dev->num_tx_queues; i++) {
46e5da40 464 qdisc = rtnl_dereference(netdev_get_tx_queue(dev, i)->qdisc);
4ef6acff
JF
465 if (qdisc) {
466 spin_lock_bh(qdisc_lock(qdisc));
467 qdisc_reset(qdisc);
468 spin_unlock_bh(qdisc_lock(qdisc));
469 }
470 }
5aa70995
DM
471}
472
5aa70995
DM
473static inline void qdisc_reset_all_tx(struct net_device *dev)
474{
f0796d5c 475 qdisc_reset_all_tx_gt(dev, 0);
5aa70995
DM
476}
477
3e745dd6
DM
478/* Are all TX queues of the device empty? */
479static inline bool qdisc_all_tx_empty(const struct net_device *dev)
480{
e8a0464c 481 unsigned int i;
46e5da40
JF
482
483 rcu_read_lock();
e8a0464c
DM
484 for (i = 0; i < dev->num_tx_queues; i++) {
485 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
46e5da40 486 const struct Qdisc *q = rcu_dereference(txq->qdisc);
3e745dd6 487
46e5da40
JF
488 if (q->q.qlen) {
489 rcu_read_unlock();
e8a0464c 490 return false;
46e5da40 491 }
e8a0464c 492 }
46e5da40 493 rcu_read_unlock();
e8a0464c 494 return true;
3e745dd6
DM
495}
496
6fa9864b 497/* Are any of the TX qdiscs changing? */
05bdd2f1 498static inline bool qdisc_tx_changing(const struct net_device *dev)
6fa9864b 499{
e8a0464c 500 unsigned int i;
46e5da40 501
e8a0464c
DM
502 for (i = 0; i < dev->num_tx_queues; i++) {
503 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
46e5da40 504 if (rcu_access_pointer(txq->qdisc) != txq->qdisc_sleeping)
e8a0464c
DM
505 return true;
506 }
507 return false;
6fa9864b
DM
508}
509
e8a0464c 510/* Is the device using the noop qdisc on all queues? */
05297949
DM
511static inline bool qdisc_tx_is_noop(const struct net_device *dev)
512{
e8a0464c 513 unsigned int i;
46e5da40 514
e8a0464c
DM
515 for (i = 0; i < dev->num_tx_queues; i++) {
516 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
46e5da40 517 if (rcu_access_pointer(txq->qdisc) != &noop_qdisc)
e8a0464c
DM
518 return false;
519 }
520 return true;
05297949
DM
521}
522
bfe0d029 523static inline unsigned int qdisc_pkt_len(const struct sk_buff *skb)
0abf77e5 524{
175f9c1b 525 return qdisc_skb_cb(skb)->pkt_len;
0abf77e5
JK
526}
527
c27f339a 528/* additional qdisc xmit flags (NET_XMIT_MASK in linux/netdevice.h) */
378a2f09
JP
529enum net_xmit_qdisc_t {
530 __NET_XMIT_STOLEN = 0x00010000,
c27f339a 531 __NET_XMIT_BYPASS = 0x00020000,
378a2f09
JP
532};
533
c27f339a 534#ifdef CONFIG_NET_CLS_ACT
378a2f09 535#define net_xmit_drop_count(e) ((e) & __NET_XMIT_STOLEN ? 0 : 1)
378a2f09
JP
536#else
537#define net_xmit_drop_count(e) (1)
538#endif
539
a2da570d
ED
540static inline void qdisc_calculate_pkt_len(struct sk_buff *skb,
541 const struct Qdisc *sch)
5f86173b 542{
3a682fbd 543#ifdef CONFIG_NET_SCHED
a2da570d
ED
544 struct qdisc_size_table *stab = rcu_dereference_bh(sch->stab);
545
546 if (stab)
547 __qdisc_calculate_pkt_len(skb, stab);
3a682fbd 548#endif
a2da570d
ED
549}
550
520ac30f
ED
551static inline int qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch,
552 struct sk_buff **to_free)
a2da570d
ED
553{
554 qdisc_calculate_pkt_len(skb, sch);
520ac30f 555 return sch->enqueue(skb, sch, to_free);
5f86173b
JK
556}
557
22e0f8b9
JF
558static inline bool qdisc_is_percpu_stats(const struct Qdisc *q)
559{
560 return q->flags & TCQ_F_CPUSTATS;
561}
bfe0d029 562
38040702
AV
563static inline void _bstats_update(struct gnet_stats_basic_packed *bstats,
564 __u64 bytes, __u32 packets)
565{
566 bstats->bytes += bytes;
567 bstats->packets += packets;
568}
569
bfe0d029
ED
570static inline void bstats_update(struct gnet_stats_basic_packed *bstats,
571 const struct sk_buff *skb)
572{
38040702
AV
573 _bstats_update(bstats,
574 qdisc_pkt_len(skb),
575 skb_is_gso(skb) ? skb_shinfo(skb)->gso_segs : 1);
576}
577
578static inline void _bstats_cpu_update(struct gnet_stats_basic_cpu *bstats,
579 __u64 bytes, __u32 packets)
580{
581 u64_stats_update_begin(&bstats->syncp);
582 _bstats_update(&bstats->bstats, bytes, packets);
583 u64_stats_update_end(&bstats->syncp);
bfe0d029
ED
584}
585
24ea591d
ED
586static inline void bstats_cpu_update(struct gnet_stats_basic_cpu *bstats,
587 const struct sk_buff *skb)
22e0f8b9 588{
22e0f8b9
JF
589 u64_stats_update_begin(&bstats->syncp);
590 bstats_update(&bstats->bstats, skb);
591 u64_stats_update_end(&bstats->syncp);
592}
593
24ea591d
ED
594static inline void qdisc_bstats_cpu_update(struct Qdisc *sch,
595 const struct sk_buff *skb)
596{
597 bstats_cpu_update(this_cpu_ptr(sch->cpu_bstats), skb);
598}
599
bfe0d029
ED
600static inline void qdisc_bstats_update(struct Qdisc *sch,
601 const struct sk_buff *skb)
bbd8a0d3 602{
bfe0d029 603 bstats_update(&sch->bstats, skb);
bbd8a0d3
KK
604}
605
25331d6c
JF
606static inline void qdisc_qstats_backlog_dec(struct Qdisc *sch,
607 const struct sk_buff *skb)
608{
609 sch->qstats.backlog -= qdisc_pkt_len(skb);
610}
611
612static inline void qdisc_qstats_backlog_inc(struct Qdisc *sch,
613 const struct sk_buff *skb)
614{
615 sch->qstats.backlog += qdisc_pkt_len(skb);
616}
617
618static inline void __qdisc_qstats_drop(struct Qdisc *sch, int count)
619{
620 sch->qstats.drops += count;
621}
622
24ea591d 623static inline void qstats_drop_inc(struct gnet_stats_queue *qstats)
25331d6c 624{
24ea591d 625 qstats->drops++;
25331d6c
JF
626}
627
24ea591d 628static inline void qstats_overlimit_inc(struct gnet_stats_queue *qstats)
b0ab6f92 629{
24ea591d
ED
630 qstats->overlimits++;
631}
b0ab6f92 632
24ea591d
ED
633static inline void qdisc_qstats_drop(struct Qdisc *sch)
634{
635 qstats_drop_inc(&sch->qstats);
636}
637
638static inline void qdisc_qstats_cpu_drop(struct Qdisc *sch)
639{
eb60a8dd 640 this_cpu_inc(sch->cpu_qstats->drops);
b0ab6f92
JF
641}
642
25331d6c
JF
643static inline void qdisc_qstats_overlimit(struct Qdisc *sch)
644{
645 sch->qstats.overlimits++;
646}
647
48da34b7
FW
648static inline void qdisc_skb_head_init(struct qdisc_skb_head *qh)
649{
650 qh->head = NULL;
651 qh->tail = NULL;
652 qh->qlen = 0;
653}
654
9972b25d 655static inline int __qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch,
48da34b7 656 struct qdisc_skb_head *qh)
9972b25d 657{
48da34b7
FW
658 struct sk_buff *last = qh->tail;
659
660 if (last) {
661 skb->next = NULL;
662 last->next = skb;
663 qh->tail = skb;
664 } else {
665 qh->tail = skb;
666 qh->head = skb;
667 }
668 qh->qlen++;
25331d6c 669 qdisc_qstats_backlog_inc(sch, skb);
9972b25d
TG
670
671 return NET_XMIT_SUCCESS;
672}
673
674static inline int qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch)
675{
676 return __qdisc_enqueue_tail(skb, sch, &sch->q);
677}
678
48da34b7 679static inline struct sk_buff *__qdisc_dequeue_head(struct qdisc_skb_head *qh)
9972b25d 680{
48da34b7
FW
681 struct sk_buff *skb = qh->head;
682
683 if (likely(skb != NULL)) {
684 qh->head = skb->next;
685 qh->qlen--;
686 if (qh->head == NULL)
687 qh->tail = NULL;
688 skb->next = NULL;
689 }
9972b25d 690
ec323368
FW
691 return skb;
692}
693
694static inline struct sk_buff *qdisc_dequeue_head(struct Qdisc *sch)
695{
696 struct sk_buff *skb = __qdisc_dequeue_head(&sch->q);
697
9190b3b3 698 if (likely(skb != NULL)) {
25331d6c 699 qdisc_qstats_backlog_dec(sch, skb);
9190b3b3
ED
700 qdisc_bstats_update(sch, skb);
701 }
9972b25d
TG
702
703 return skb;
704}
705
520ac30f
ED
706/* Instead of calling kfree_skb() while root qdisc lock is held,
707 * queue the skb for future freeing at end of __dev_xmit_skb()
708 */
709static inline void __qdisc_drop(struct sk_buff *skb, struct sk_buff **to_free)
710{
711 skb->next = *to_free;
712 *to_free = skb;
713}
714
57dbb2d8 715static inline unsigned int __qdisc_queue_drop_head(struct Qdisc *sch,
48da34b7 716 struct qdisc_skb_head *qh,
520ac30f 717 struct sk_buff **to_free)
57dbb2d8 718{
48da34b7 719 struct sk_buff *skb = __qdisc_dequeue_head(qh);
57dbb2d8
HPP
720
721 if (likely(skb != NULL)) {
722 unsigned int len = qdisc_pkt_len(skb);
520ac30f 723
25331d6c 724 qdisc_qstats_backlog_dec(sch, skb);
520ac30f 725 __qdisc_drop(skb, to_free);
57dbb2d8
HPP
726 return len;
727 }
728
729 return 0;
730}
731
520ac30f
ED
732static inline unsigned int qdisc_queue_drop_head(struct Qdisc *sch,
733 struct sk_buff **to_free)
57dbb2d8 734{
520ac30f 735 return __qdisc_queue_drop_head(sch, &sch->q, to_free);
9972b25d
TG
736}
737
48a8f519
PM
738static inline struct sk_buff *qdisc_peek_head(struct Qdisc *sch)
739{
48da34b7
FW
740 const struct qdisc_skb_head *qh = &sch->q;
741
742 return qh->head;
48a8f519
PM
743}
744
77be155c
JP
745/* generic pseudo peek method for non-work-conserving qdisc */
746static inline struct sk_buff *qdisc_peek_dequeued(struct Qdisc *sch)
747{
748 /* we can reuse ->gso_skb because peek isn't called for root qdiscs */
61c9eaf9 749 if (!sch->gso_skb) {
77be155c 750 sch->gso_skb = sch->dequeue(sch);
a27758ff 751 if (sch->gso_skb) {
61c9eaf9 752 /* it's still part of the queue */
a27758ff 753 qdisc_qstats_backlog_inc(sch, sch->gso_skb);
61c9eaf9 754 sch->q.qlen++;
a27758ff 755 }
61c9eaf9 756 }
77be155c
JP
757
758 return sch->gso_skb;
759}
760
761/* use instead of qdisc->dequeue() for all qdiscs queried with ->peek() */
762static inline struct sk_buff *qdisc_dequeue_peeked(struct Qdisc *sch)
763{
764 struct sk_buff *skb = sch->gso_skb;
765
61c9eaf9 766 if (skb) {
77be155c 767 sch->gso_skb = NULL;
a27758ff 768 qdisc_qstats_backlog_dec(sch, skb);
61c9eaf9
JP
769 sch->q.qlen--;
770 } else {
77be155c 771 skb = sch->dequeue(sch);
61c9eaf9 772 }
77be155c
JP
773
774 return skb;
775}
776
48da34b7 777static inline void __qdisc_reset_queue(struct qdisc_skb_head *qh)
9972b25d
TG
778{
779 /*
780 * We do not know the backlog in bytes of this list, it
781 * is up to the caller to correct it
782 */
48da34b7
FW
783 ASSERT_RTNL();
784 if (qh->qlen) {
785 rtnl_kfree_skbs(qh->head, qh->tail);
786
787 qh->head = NULL;
788 qh->tail = NULL;
789 qh->qlen = 0;
1b5c5493 790 }
9972b25d
TG
791}
792
793static inline void qdisc_reset_queue(struct Qdisc *sch)
794{
1b5c5493 795 __qdisc_reset_queue(&sch->q);
9972b25d
TG
796 sch->qstats.backlog = 0;
797}
798
86a7996c
WC
799static inline struct Qdisc *qdisc_replace(struct Qdisc *sch, struct Qdisc *new,
800 struct Qdisc **pold)
801{
802 struct Qdisc *old;
803
804 sch_tree_lock(sch);
805 old = *pold;
806 *pold = new;
807 if (old != NULL) {
2ccccf5f 808 qdisc_tree_reduce_backlog(old, old->q.qlen, old->qstats.backlog);
86a7996c
WC
809 qdisc_reset(old);
810 }
811 sch_tree_unlock(sch);
812
813 return old;
814}
815
1b5c5493
ED
816static inline void rtnl_qdisc_drop(struct sk_buff *skb, struct Qdisc *sch)
817{
818 rtnl_kfree_skbs(skb, skb);
819 qdisc_qstats_drop(sch);
820}
821
520ac30f
ED
822
823static inline int qdisc_drop(struct sk_buff *skb, struct Qdisc *sch,
824 struct sk_buff **to_free)
9972b25d 825{
520ac30f 826 __qdisc_drop(skb, to_free);
25331d6c 827 qdisc_qstats_drop(sch);
9972b25d
TG
828
829 return NET_XMIT_DROP;
830}
831
e9bef55d
JDB
832/* Length to Time (L2T) lookup in a qdisc_rate_table, to determine how
833 long it will take to send a packet given its size.
834 */
835static inline u32 qdisc_l2t(struct qdisc_rate_table* rtab, unsigned int pktlen)
836{
e08b0998
JDB
837 int slot = pktlen + rtab->rate.cell_align + rtab->rate.overhead;
838 if (slot < 0)
839 slot = 0;
e9bef55d
JDB
840 slot >>= rtab->rate.cell_log;
841 if (slot > 255)
a02cec21 842 return rtab->data[255]*(slot >> 8) + rtab->data[slot & 0xFF];
e9bef55d
JDB
843 return rtab->data[slot];
844}
845
292f1c7f 846struct psched_ratecfg {
130d3d68 847 u64 rate_bytes_ps; /* bytes per second */
01cb71d2
ED
848 u32 mult;
849 u16 overhead;
8a8e3d84 850 u8 linklayer;
01cb71d2 851 u8 shift;
292f1c7f
JP
852};
853
854static inline u64 psched_l2t_ns(const struct psched_ratecfg *r,
855 unsigned int len)
856{
8a8e3d84
JDB
857 len += r->overhead;
858
859 if (unlikely(r->linklayer == TC_LINKLAYER_ATM))
860 return ((u64)(DIV_ROUND_UP(len,48)*53) * r->mult) >> r->shift;
861
862 return ((u64)len * r->mult) >> r->shift;
292f1c7f
JP
863}
864
5c15257f 865void psched_ratecfg_precompute(struct psched_ratecfg *r,
3e1e3aae
ED
866 const struct tc_ratespec *conf,
867 u64 rate64);
292f1c7f 868
01cb71d2
ED
869static inline void psched_ratecfg_getrate(struct tc_ratespec *res,
870 const struct psched_ratecfg *r)
292f1c7f 871{
01cb71d2 872 memset(res, 0, sizeof(*res));
3e1e3aae
ED
873
874 /* legacy struct tc_ratespec has a 32bit @rate field
875 * Qdisc using 64bit rate should add new attributes
876 * in order to maintain compatibility.
877 */
878 res->rate = min_t(u64, r->rate_bytes_ps, ~0U);
879
01cb71d2 880 res->overhead = r->overhead;
8a8e3d84 881 res->linklayer = (r->linklayer & TC_LINKLAYER_MASK);
292f1c7f
JP
882}
883
1da177e4 884#endif