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