]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/net/sch_generic.h
Merge tag 'dmaengine-5.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul...
[mirror_ubuntu-jammy-kernel.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>
c266f64d 15#include <linux/mutex.h>
4f8116c8 16#include <linux/rwsem.h>
97394bef 17#include <linux/atomic.h>
59eb87cb 18#include <linux/hashtable.h>
1da177e4 19#include <net/gen_stats.h>
be577ddc 20#include <net/rtnetlink.h>
a7323311 21#include <net/flow_offload.h>
1da177e4
LT
22
23struct Qdisc_ops;
24struct qdisc_walker;
25struct tcf_walker;
26struct module;
d58e468b 27struct bpf_flow_keys;
1da177e4 28
fd2c3ef7 29struct qdisc_rate_table {
1da177e4
LT
30 struct tc_ratespec rate;
31 u32 data[256];
32 struct qdisc_rate_table *next;
33 int refcnt;
34};
35
fd2c3ef7 36enum qdisc_state_t {
37437bb2 37 __QDISC_STATE_SCHED,
a9312ae8 38 __QDISC_STATE_DEACTIVATED,
e2627c8c
DM
39};
40
175f9c1b 41struct qdisc_size_table {
a2da570d 42 struct rcu_head rcu;
175f9c1b
JK
43 struct list_head list;
44 struct tc_sizespec szopts;
45 int refcnt;
46 u16 data[];
47};
48
48da34b7
FW
49/* similar to sk_buff_head, but skb->prev pointer is undefined. */
50struct qdisc_skb_head {
51 struct sk_buff *head;
52 struct sk_buff *tail;
73eb628d 53 __u32 qlen;
48da34b7
FW
54 spinlock_t lock;
55};
56
fd2c3ef7 57struct Qdisc {
520ac30f
ED
58 int (*enqueue)(struct sk_buff *skb,
59 struct Qdisc *sch,
60 struct sk_buff **to_free);
61 struct sk_buff * (*dequeue)(struct Qdisc *sch);
05bdd2f1 62 unsigned int flags;
b00355db 63#define TCQ_F_BUILTIN 1
fd245a4a
ED
64#define TCQ_F_INGRESS 2
65#define TCQ_F_CAN_BYPASS 4
66#define TCQ_F_MQROOT 8
1abbe139
ED
67#define TCQ_F_ONETXQUEUE 0x10 /* dequeue_skb() can assume all skbs are for
68 * q->dev_queue : It can test
69 * netif_xmit_frozen_or_stopped() before
70 * dequeueing next packet.
71 * Its true for MQ/MQPRIO slaves, or non
72 * multiqueue device.
73 */
b00355db 74#define TCQ_F_WARN_NONWC (1 << 16)
22e0f8b9 75#define TCQ_F_CPUSTATS 0x20 /* run using percpu statistics */
4eaf3b84
ED
76#define TCQ_F_NOPARENT 0x40 /* root of its hierarchy :
77 * qdisc_tree_decrease_qlen() should stop.
78 */
49b49971 79#define TCQ_F_INVISIBLE 0x80 /* invisible by default in dump */
6b3ba914 80#define TCQ_F_NOLOCK 0x100 /* qdisc does not require locking */
7a4fa291 81#define TCQ_F_OFFLOADED 0x200 /* qdisc is offloaded to HW */
45203a3b 82 u32 limit;
05bdd2f1 83 const struct Qdisc_ops *ops;
a2da570d 84 struct qdisc_size_table __rcu *stab;
59cc1f61 85 struct hlist_node hash;
1da177e4
LT
86 u32 handle;
87 u32 parent;
72b25a91 88
5e140dfc 89 struct netdev_queue *dev_queue;
5e140dfc 90
1c0d32fd 91 struct net_rate_estimator __rcu *rate_est;
0d32ef8c
ED
92 struct gnet_stats_basic_cpu __percpu *cpu_bstats;
93 struct gnet_stats_queue __percpu *cpu_qstats;
846e463a 94 int pad;
e9be0e99 95 refcount_t refcnt;
0d32ef8c 96
5e140dfc
ED
97 /*
98 * For performance sake on SMP, we put highly modified fields at the end
99 */
a53851e2 100 struct sk_buff_head gso_skb ____cacheline_aligned_in_smp;
48da34b7 101 struct qdisc_skb_head q;
0d32ef8c 102 struct gnet_stats_basic_packed bstats;
f9eb8aea 103 seqcount_t running;
0d32ef8c 104 struct gnet_stats_queue qstats;
4d202a0d
ED
105 unsigned long state;
106 struct Qdisc *next_sched;
70e57d5e 107 struct sk_buff_head skb_bad_txq;
45203a3b
ED
108
109 spinlock_t busylock ____cacheline_aligned_in_smp;
96009c7d 110 spinlock_t seqlock;
28cff537
PA
111
112 /* for NOLOCK qdisc, true if there are no enqueued skbs */
113 bool empty;
3a7d0d07 114 struct rcu_head rcu;
846e463a
ED
115
116 /* private data */
117 long privdata[] ____cacheline_aligned;
1da177e4
LT
118};
119
551143d8
ED
120static inline void qdisc_refcount_inc(struct Qdisc *qdisc)
121{
122 if (qdisc->flags & TCQ_F_BUILTIN)
123 return;
124 refcount_inc(&qdisc->refcnt);
125}
126
9d7e82ce
VB
127/* Intended to be used by unlocked users, when concurrent qdisc release is
128 * possible.
129 */
130
131static inline struct Qdisc *qdisc_refcount_inc_nz(struct Qdisc *qdisc)
132{
133 if (qdisc->flags & TCQ_F_BUILTIN)
134 return qdisc;
135 if (refcount_inc_not_zero(&qdisc->refcnt))
136 return qdisc;
137 return NULL;
138}
139
96009c7d 140static inline bool qdisc_is_running(struct Qdisc *qdisc)
bc135b23 141{
32f7b44d 142 if (qdisc->flags & TCQ_F_NOLOCK)
96009c7d 143 return spin_is_locked(&qdisc->seqlock);
f9eb8aea 144 return (raw_read_seqcount(&qdisc->running) & 1) ? true : false;
bc135b23
ED
145}
146
9c01c9f1
PA
147static inline bool qdisc_is_percpu_stats(const struct Qdisc *q)
148{
149 return q->flags & TCQ_F_CPUSTATS;
150}
151
28cff537
PA
152static inline bool qdisc_is_empty(const struct Qdisc *qdisc)
153{
9c01c9f1 154 if (qdisc_is_percpu_stats(qdisc))
90b2be27
ED
155 return READ_ONCE(qdisc->empty);
156 return !READ_ONCE(qdisc->q.qlen);
28cff537
PA
157}
158
bc135b23
ED
159static inline bool qdisc_run_begin(struct Qdisc *qdisc)
160{
32f7b44d 161 if (qdisc->flags & TCQ_F_NOLOCK) {
96009c7d 162 if (!spin_trylock(&qdisc->seqlock))
32f7b44d 163 return false;
90b2be27 164 WRITE_ONCE(qdisc->empty, false);
32f7b44d 165 } else if (qdisc_is_running(qdisc)) {
fd245a4a 166 return false;
32f7b44d 167 }
52fbb290
ED
168 /* Variant of write_seqcount_begin() telling lockdep a trylock
169 * was attempted.
170 */
171 raw_write_seqcount_begin(&qdisc->running);
172 seqcount_acquire(&qdisc->running.dep_map, 0, 1, _RET_IP_);
fd245a4a 173 return true;
bc135b23
ED
174}
175
176static inline void qdisc_run_end(struct Qdisc *qdisc)
177{
f9eb8aea 178 write_seqcount_end(&qdisc->running);
32f7b44d 179 if (qdisc->flags & TCQ_F_NOLOCK)
96009c7d 180 spin_unlock(&qdisc->seqlock);
fd245a4a
ED
181}
182
5772e9a3
JDB
183static inline bool qdisc_may_bulk(const struct Qdisc *qdisc)
184{
185 return qdisc->flags & TCQ_F_ONETXQUEUE;
186}
187
188static inline int qdisc_avail_bulklimit(const struct netdev_queue *txq)
189{
190#ifdef CONFIG_BQL
191 /* Non-BQL migrated drivers will return 0, too. */
192 return dql_avail(&txq->dql);
193#else
194 return 0;
195#endif
196}
197
fd2c3ef7 198struct Qdisc_class_ops {
dfcd2a2b 199 unsigned int flags;
1da177e4 200 /* Child qdisc manipulation */
926e61b7 201 struct netdev_queue * (*select_queue)(struct Qdisc *, struct tcmsg *);
1da177e4 202 int (*graft)(struct Qdisc *, unsigned long cl,
653d6fd6
AA
203 struct Qdisc *, struct Qdisc **,
204 struct netlink_ext_ack *extack);
1da177e4 205 struct Qdisc * (*leaf)(struct Qdisc *, unsigned long cl);
43effa1e 206 void (*qlen_notify)(struct Qdisc *, unsigned long);
1da177e4
LT
207
208 /* Class manipulation routines */
143976ce 209 unsigned long (*find)(struct Qdisc *, u32 classid);
1da177e4 210 int (*change)(struct Qdisc *, u32, u32,
793d81d6
AA
211 struct nlattr **, unsigned long *,
212 struct netlink_ext_ack *);
1da177e4
LT
213 int (*delete)(struct Qdisc *, unsigned long);
214 void (*walk)(struct Qdisc *, struct qdisc_walker * arg);
215
216 /* Filter manipulation */
0ac4bd68 217 struct tcf_block * (*tcf_block)(struct Qdisc *sch,
cbaacc4e
AA
218 unsigned long arg,
219 struct netlink_ext_ack *extack);
1da177e4
LT
220 unsigned long (*bind_tcf)(struct Qdisc *, unsigned long,
221 u32 classid);
222 void (*unbind_tcf)(struct Qdisc *, unsigned long);
223
224 /* rtnetlink specific */
225 int (*dump)(struct Qdisc *, unsigned long,
226 struct sk_buff *skb, struct tcmsg*);
227 int (*dump_stats)(struct Qdisc *, unsigned long,
228 struct gnet_dump *);
229};
230
dfcd2a2b
VB
231/* Qdisc_class_ops flag values */
232
233/* Implements API that doesn't require rtnl lock */
234enum qdisc_class_ops_flags {
235 QDISC_CLASS_OPS_DOIT_UNLOCKED = 1,
236};
237
fd2c3ef7 238struct Qdisc_ops {
1da177e4 239 struct Qdisc_ops *next;
20fea08b 240 const struct Qdisc_class_ops *cl_ops;
1da177e4
LT
241 char id[IFNAMSIZ];
242 int priv_size;
d59f5ffa 243 unsigned int static_flags;
1da177e4 244
520ac30f
ED
245 int (*enqueue)(struct sk_buff *skb,
246 struct Qdisc *sch,
247 struct sk_buff **to_free);
1da177e4 248 struct sk_buff * (*dequeue)(struct Qdisc *);
90d841fd 249 struct sk_buff * (*peek)(struct Qdisc *);
1da177e4 250
e63d7dfd
AA
251 int (*init)(struct Qdisc *sch, struct nlattr *arg,
252 struct netlink_ext_ack *extack);
1da177e4
LT
253 void (*reset)(struct Qdisc *);
254 void (*destroy)(struct Qdisc *);
0ac4bd68 255 int (*change)(struct Qdisc *sch,
2030721c
AA
256 struct nlattr *arg,
257 struct netlink_ext_ack *extack);
0ac4bd68 258 void (*attach)(struct Qdisc *sch);
48bfd55e 259 int (*change_tx_queue_len)(struct Qdisc *, unsigned int);
1da177e4
LT
260
261 int (*dump)(struct Qdisc *, struct sk_buff *);
262 int (*dump_stats)(struct Qdisc *, struct gnet_dump *);
263
d47a6b0e
JP
264 void (*ingress_block_set)(struct Qdisc *sch,
265 u32 block_index);
266 void (*egress_block_set)(struct Qdisc *sch,
267 u32 block_index);
268 u32 (*ingress_block_get)(struct Qdisc *sch);
269 u32 (*egress_block_get)(struct Qdisc *sch);
270
1da177e4
LT
271 struct module *owner;
272};
273
274
fd2c3ef7 275struct tcf_result {
db50514f
JP
276 union {
277 struct {
278 unsigned long class;
279 u32 classid;
280 };
281 const struct tcf_proto *goto_tp;
cd11b164 282
720f22fe 283 /* used in the skb_tc_reinsert function */
cd11b164
PA
284 struct {
285 bool ingress;
286 struct gnet_stats_queue *qstats;
287 };
db50514f 288 };
1da177e4
LT
289};
290
9f407f17
JP
291struct tcf_chain;
292
fd2c3ef7 293struct tcf_proto_ops {
36272874 294 struct list_head head;
1da177e4
LT
295 char kind[IFNAMSIZ];
296
dc7f9f6e
ED
297 int (*classify)(struct sk_buff *,
298 const struct tcf_proto *,
299 struct tcf_result *);
1da177e4 300 int (*init)(struct tcf_proto*);
12db03b6 301 void (*destroy)(struct tcf_proto *tp, bool rtnl_held,
715df5ec 302 struct netlink_ext_ack *extack);
1da177e4 303
8113c095 304 void* (*get)(struct tcf_proto*, u32 handle);
7d5509fa 305 void (*put)(struct tcf_proto *tp, void *f);
c1b52739 306 int (*change)(struct net *net, struct sk_buff *,
af4c6641 307 struct tcf_proto*, unsigned long,
add93b61 308 u32 handle, struct nlattr **,
12db03b6 309 void **, bool, bool,
7306db38 310 struct netlink_ext_ack *);
8865fdd4 311 int (*delete)(struct tcf_proto *tp, void *arg,
12db03b6 312 bool *last, bool rtnl_held,
571acf21 313 struct netlink_ext_ack *);
a5b72a08 314 bool (*delete_empty)(struct tcf_proto *tp);
12db03b6
VB
315 void (*walk)(struct tcf_proto *tp,
316 struct tcf_walker *arg, bool rtnl_held);
e56185c7 317 int (*reoffload)(struct tcf_proto *tp, bool add,
a7323311 318 flow_setup_cb_t *cb, void *cb_priv,
e56185c7 319 struct netlink_ext_ack *extack);
a449a3e7
VB
320 void (*hw_add)(struct tcf_proto *tp,
321 void *type_data);
322 void (*hw_del)(struct tcf_proto *tp,
323 void *type_data);
2e24cd75
CW
324 void (*bind_class)(void *, u32, unsigned long,
325 void *, unsigned long);
9f407f17
JP
326 void * (*tmplt_create)(struct net *net,
327 struct tcf_chain *chain,
328 struct nlattr **tca,
329 struct netlink_ext_ack *extack);
330 void (*tmplt_destroy)(void *tmplt_priv);
1da177e4
LT
331
332 /* rtnetlink specific */
8113c095 333 int (*dump)(struct net*, struct tcf_proto*, void *,
12db03b6
VB
334 struct sk_buff *skb, struct tcmsg*,
335 bool);
f8ab1807
VB
336 int (*terse_dump)(struct net *net,
337 struct tcf_proto *tp, void *fh,
338 struct sk_buff *skb,
339 struct tcmsg *t, bool rtnl_held);
9f407f17
JP
340 int (*tmplt_dump)(struct sk_buff *skb,
341 struct net *net,
342 void *tmplt_priv);
1da177e4
LT
343
344 struct module *owner;
12db03b6
VB
345 int flags;
346};
347
a5b72a08
DC
348/* Classifiers setting TCF_PROTO_OPS_DOIT_UNLOCKED in tcf_proto_ops->flags
349 * are expected to implement tcf_proto_ops->delete_empty(), otherwise race
350 * conditions can occur when filters are inserted/deleted simultaneously.
351 */
12db03b6
VB
352enum tcf_proto_ops_flags {
353 TCF_PROTO_OPS_DOIT_UNLOCKED = 1,
1da177e4
LT
354};
355
fd2c3ef7 356struct tcf_proto {
1da177e4 357 /* Fast access part */
25d8c0d5
JF
358 struct tcf_proto __rcu *next;
359 void __rcu *root;
7fd4b288
PA
360
361 /* called under RCU BH lock*/
dc7f9f6e
ED
362 int (*classify)(struct sk_buff *,
363 const struct tcf_proto *,
364 struct tcf_result *);
66c6f529 365 __be16 protocol;
1da177e4
LT
366
367 /* All the rest */
368 u32 prio;
1da177e4 369 void *data;
dc7f9f6e 370 const struct tcf_proto_ops *ops;
5bc17018 371 struct tcf_chain *chain;
8b64678e
VB
372 /* Lock protects tcf_proto shared state and can be used by unlocked
373 * classifiers to protect their private data.
374 */
375 spinlock_t lock;
376 bool deleting;
4dbfa766 377 refcount_t refcnt;
25d8c0d5 378 struct rcu_head rcu;
59eb87cb 379 struct hlist_node destroy_ht_node;
1da177e4
LT
380};
381
175f9c1b 382struct qdisc_skb_cb {
089b19a9
SF
383 struct {
384 unsigned int pkt_len;
385 u16 slave_dev_queue_mapping;
386 u16 tc_classid;
d58e468b 387 };
25711786
ED
388#define QDISC_CB_PRIV_LEN 20
389 unsigned char data[QDISC_CB_PRIV_LEN];
038ebb1a 390 u16 mru;
175f9c1b
JK
391};
392
c7eb7d72
JP
393typedef void tcf_chain_head_change_t(struct tcf_proto *tp_head, void *priv);
394
2190d1d0 395struct tcf_chain {
ed76f5ed
VB
396 /* Protects filter_chain. */
397 struct mutex filter_chain_lock;
2190d1d0 398 struct tcf_proto __rcu *filter_chain;
5bc17018
JP
399 struct list_head list;
400 struct tcf_block *block;
401 u32 index; /* chain index */
402 unsigned int refcnt;
1f3ed383 403 unsigned int action_refcnt;
32a4f5ec 404 bool explicitly_created;
726d0612 405 bool flushing;
9f407f17
JP
406 const struct tcf_proto_ops *tmplt_ops;
407 void *tmplt_priv;
ee3bbfe8 408 struct rcu_head rcu;
6529eaba
JP
409};
410
2190d1d0 411struct tcf_block {
c266f64d
VB
412 /* Lock protects tcf_block and lifetime-management data of chains
413 * attached to the block (refcnt, action_refcnt, explicitly_created).
414 */
415 struct mutex lock;
5bc17018 416 struct list_head chain_list;
48617387 417 u32 index; /* block index for shared blocks */
a7df4870 418 u32 classid; /* which class this block belongs to */
cfebd7e2 419 refcount_t refcnt;
855319be 420 struct net *net;
69d78ef2 421 struct Qdisc *q;
4f8116c8 422 struct rw_semaphore cb_lock; /* protects cb_list and offload counters */
14bfb13f 423 struct flow_block flow_block;
f36fe1c4
JP
424 struct list_head owner_list;
425 bool keep_dst;
97394bef 426 atomic_t offloadcnt; /* Number of oddloaded filters */
caa72601 427 unsigned int nooffloaddevcnt; /* Number of devs unable to do offload */
c9f14470 428 unsigned int lockeddevcnt; /* Number of devs that require rtnl lock. */
f71e0ca4
JP
429 struct {
430 struct tcf_chain *chain;
431 struct list_head filter_chain_list;
432 } chain0;
0607e439 433 struct rcu_head rcu;
59eb87cb
JH
434 DECLARE_HASHTABLE(proto_destroy_ht, 7);
435 struct mutex proto_destroy_lock; /* Lock for proto_destroy hashtable. */
2190d1d0
JP
436};
437
ed76f5ed
VB
438static inline bool lockdep_tcf_chain_is_locked(struct tcf_chain *chain)
439{
440 return lockdep_is_held(&chain->filter_chain_lock);
441}
8b64678e
VB
442
443static inline bool lockdep_tcf_proto_is_locked(struct tcf_proto *tp)
444{
445 return lockdep_is_held(&tp->lock);
446}
ed76f5ed
VB
447
448#define tcf_chain_dereference(p, chain) \
449 rcu_dereference_protected(p, lockdep_tcf_chain_is_locked(chain))
450
8b64678e
VB
451#define tcf_proto_dereference(p, tp) \
452 rcu_dereference_protected(p, lockdep_tcf_proto_is_locked(tp))
453
16bda13d
DM
454static inline void qdisc_cb_private_validate(const struct sk_buff *skb, int sz)
455{
456 struct qdisc_skb_cb *qcb;
5ee31c68 457
038ebb1a 458 BUILD_BUG_ON(sizeof(skb->cb) < sizeof(*qcb));
16bda13d
DM
459 BUILD_BUG_ON(sizeof(qcb->data) < sz);
460}
461
73eb628d
PA
462static inline int qdisc_qlen_cpu(const struct Qdisc *q)
463{
464 return this_cpu_ptr(q->cpu_qstats)->qlen;
465}
466
05bdd2f1 467static inline int qdisc_qlen(const struct Qdisc *q)
bbd8a0d3
KK
468{
469 return q->q.qlen;
470}
471
73eb628d 472static inline int qdisc_qlen_sum(const struct Qdisc *q)
7e66016f 473{
73eb628d
PA
474 __u32 qlen = q->qstats.qlen;
475 int i;
7e66016f 476
73eb628d
PA
477 if (qdisc_is_percpu_stats(q)) {
478 for_each_possible_cpu(i)
479 qlen += per_cpu_ptr(q->cpu_qstats, i)->qlen;
480 } else {
6172abc1 481 qlen += q->q.qlen;
73eb628d 482 }
7e66016f
JF
483
484 return qlen;
485}
486
bfe0d029 487static inline struct qdisc_skb_cb *qdisc_skb_cb(const struct sk_buff *skb)
175f9c1b
JK
488{
489 return (struct qdisc_skb_cb *)skb->cb;
490}
491
83874000
DM
492static inline spinlock_t *qdisc_lock(struct Qdisc *qdisc)
493{
494 return &qdisc->q.lock;
495}
496
05bdd2f1 497static inline struct Qdisc *qdisc_root(const struct Qdisc *qdisc)
7698b4fc 498{
46e5da40
JF
499 struct Qdisc *q = rcu_dereference_rtnl(qdisc->dev_queue->qdisc);
500
501 return q;
7698b4fc
DM
502}
503
159d2c7d
ED
504static inline struct Qdisc *qdisc_root_bh(const struct Qdisc *qdisc)
505{
506 return rcu_dereference_bh(qdisc->dev_queue->qdisc);
507}
508
05bdd2f1 509static inline struct Qdisc *qdisc_root_sleeping(const struct Qdisc *qdisc)
2540e051
JP
510{
511 return qdisc->dev_queue->qdisc_sleeping;
512}
513
7e43f112
DM
514/* The qdisc root lock is a mechanism by which to top level
515 * of a qdisc tree can be locked from any qdisc node in the
516 * forest. This allows changing the configuration of some
517 * aspect of the qdisc tree while blocking out asynchronous
518 * qdisc access in the packet processing paths.
519 *
520 * It is only legal to do this when the root will not change
521 * on us. Otherwise we'll potentially lock the wrong qdisc
522 * root. This is enforced by holding the RTNL semaphore, which
523 * all users of this lock accessor must do.
524 */
05bdd2f1 525static inline spinlock_t *qdisc_root_lock(const struct Qdisc *qdisc)
7698b4fc
DM
526{
527 struct Qdisc *root = qdisc_root(qdisc);
528
7e43f112 529 ASSERT_RTNL();
83874000 530 return qdisc_lock(root);
7698b4fc
DM
531}
532
05bdd2f1 533static inline spinlock_t *qdisc_root_sleeping_lock(const struct Qdisc *qdisc)
f6f9b93f
JP
534{
535 struct Qdisc *root = qdisc_root_sleeping(qdisc);
536
537 ASSERT_RTNL();
538 return qdisc_lock(root);
539}
540
edb09eb1
ED
541static inline seqcount_t *qdisc_root_sleeping_running(const struct Qdisc *qdisc)
542{
543 struct Qdisc *root = qdisc_root_sleeping(qdisc);
544
545 ASSERT_RTNL();
546 return &root->running;
547}
548
05bdd2f1 549static inline struct net_device *qdisc_dev(const struct Qdisc *qdisc)
5ce2d488
DM
550{
551 return qdisc->dev_queue->dev;
552}
1da177e4 553
05bdd2f1 554static inline void sch_tree_lock(const struct Qdisc *q)
78a5b30b 555{
fe439dd0 556 spin_lock_bh(qdisc_root_sleeping_lock(q));
78a5b30b
DM
557}
558
05bdd2f1 559static inline void sch_tree_unlock(const struct Qdisc *q)
78a5b30b 560{
fe439dd0 561 spin_unlock_bh(qdisc_root_sleeping_lock(q));
78a5b30b
DM
562}
563
e41a33e6
TG
564extern struct Qdisc noop_qdisc;
565extern struct Qdisc_ops noop_qdisc_ops;
6ec1c69a
DM
566extern struct Qdisc_ops pfifo_fast_ops;
567extern struct Qdisc_ops mq_qdisc_ops;
d66d6c31 568extern struct Qdisc_ops noqueue_qdisc_ops;
6da7c8fc 569extern const struct Qdisc_ops *default_qdisc_ops;
1f27cde3
ED
570static inline const struct Qdisc_ops *
571get_default_qdisc_ops(const struct net_device *dev, int ntx)
572{
573 return ntx < dev->real_num_tx_queues ?
574 default_qdisc_ops : &pfifo_fast_ops;
575}
e41a33e6 576
fd2c3ef7 577struct Qdisc_class_common {
6fe1c7a5
PM
578 u32 classid;
579 struct hlist_node hnode;
580};
581
fd2c3ef7 582struct Qdisc_class_hash {
6fe1c7a5
PM
583 struct hlist_head *hash;
584 unsigned int hashsize;
585 unsigned int hashmask;
586 unsigned int hashelems;
587};
588
589static inline unsigned int qdisc_class_hash(u32 id, u32 mask)
590{
591 id ^= id >> 8;
592 id ^= id >> 4;
593 return id & mask;
594}
595
596static inline struct Qdisc_class_common *
05bdd2f1 597qdisc_class_find(const struct Qdisc_class_hash *hash, u32 id)
6fe1c7a5
PM
598{
599 struct Qdisc_class_common *cl;
6fe1c7a5
PM
600 unsigned int h;
601
7d3f0cd4
GF
602 if (!id)
603 return NULL;
604
6fe1c7a5 605 h = qdisc_class_hash(id, hash->hashmask);
b67bfe0d 606 hlist_for_each_entry(cl, &hash->hash[h], hnode) {
6fe1c7a5
PM
607 if (cl->classid == id)
608 return cl;
609 }
610 return NULL;
611}
612
384c181e
AN
613static inline int tc_classid_to_hwtc(struct net_device *dev, u32 classid)
614{
615 u32 hwtc = TC_H_MIN(classid) - TC_H_MIN_PRIORITY;
616
617 return (hwtc < netdev_get_num_tc(dev)) ? hwtc : -EINVAL;
618}
619
5c15257f
JP
620int qdisc_class_hash_init(struct Qdisc_class_hash *);
621void qdisc_class_hash_insert(struct Qdisc_class_hash *,
622 struct Qdisc_class_common *);
623void qdisc_class_hash_remove(struct Qdisc_class_hash *,
624 struct Qdisc_class_common *);
625void qdisc_class_hash_grow(struct Qdisc *, struct Qdisc_class_hash *);
626void qdisc_class_hash_destroy(struct Qdisc_class_hash *);
627
48bfd55e 628int dev_qdisc_change_tx_queue_len(struct net_device *dev);
5c15257f
JP
629void dev_init_scheduler(struct net_device *dev);
630void dev_shutdown(struct net_device *dev);
631void dev_activate(struct net_device *dev);
632void dev_deactivate(struct net_device *dev);
633void dev_deactivate_many(struct list_head *head);
634struct Qdisc *dev_graft_qdisc(struct netdev_queue *dev_queue,
635 struct Qdisc *qdisc);
636void qdisc_reset(struct Qdisc *qdisc);
86bd446b 637void qdisc_put(struct Qdisc *qdisc);
3a7d0d07 638void qdisc_put_unlocked(struct Qdisc *qdisc);
5f2939d9 639void qdisc_tree_reduce_backlog(struct Qdisc *qdisc, int n, int len);
b592843c
JK
640#ifdef CONFIG_NET_SCHED
641int qdisc_offload_dump_helper(struct Qdisc *q, enum tc_setup_type type,
642 void *type_data);
bfaee911
JK
643void qdisc_offload_graft_helper(struct net_device *dev, struct Qdisc *sch,
644 struct Qdisc *new, struct Qdisc *old,
645 enum tc_setup_type type, void *type_data,
646 struct netlink_ext_ack *extack);
b592843c
JK
647#else
648static inline int
649qdisc_offload_dump_helper(struct Qdisc *q, enum tc_setup_type type,
650 void *type_data)
651{
652 q->flags &= ~TCQ_F_OFFLOADED;
653 return 0;
654}
bfaee911
JK
655
656static inline void
657qdisc_offload_graft_helper(struct net_device *dev, struct Qdisc *sch,
658 struct Qdisc *new, struct Qdisc *old,
659 enum tc_setup_type type, void *type_data,
660 struct netlink_ext_ack *extack)
661{
662}
b592843c 663#endif
5c15257f 664struct Qdisc *qdisc_alloc(struct netdev_queue *dev_queue,
d0bd684d
AA
665 const struct Qdisc_ops *ops,
666 struct netlink_ext_ack *extack);
81d947e2 667void qdisc_free(struct Qdisc *qdisc);
5c15257f 668struct Qdisc *qdisc_create_dflt(struct netdev_queue *dev_queue,
a38a9882
AA
669 const struct Qdisc_ops *ops, u32 parentid,
670 struct netlink_ext_ack *extack);
5c15257f
JP
671void __qdisc_calculate_pkt_len(struct sk_buff *skb,
672 const struct qdisc_size_table *stab);
27b29f63 673int skb_do_redirect(struct sk_buff *);
1da177e4 674
fdc5432a
DB
675static inline bool skb_at_tc_ingress(const struct sk_buff *skb)
676{
677#ifdef CONFIG_NET_CLS_ACT
8dc07fdb 678 return skb->tc_at_ingress;
fdc5432a
DB
679#else
680 return false;
681#endif
682}
683
e7246e12
WB
684static inline bool skb_skip_tc_classify(struct sk_buff *skb)
685{
686#ifdef CONFIG_NET_CLS_ACT
687 if (skb->tc_skip_classify) {
688 skb->tc_skip_classify = 0;
689 return true;
690 }
691#endif
692 return false;
693}
694
3a053b1a 695/* Reset all TX qdiscs greater than index of a device. */
f0796d5c 696static inline void qdisc_reset_all_tx_gt(struct net_device *dev, unsigned int i)
5aa70995 697{
4ef6acff
JF
698 struct Qdisc *qdisc;
699
f0796d5c 700 for (; i < dev->num_tx_queues; i++) {
46e5da40 701 qdisc = rtnl_dereference(netdev_get_tx_queue(dev, i)->qdisc);
4ef6acff
JF
702 if (qdisc) {
703 spin_lock_bh(qdisc_lock(qdisc));
704 qdisc_reset(qdisc);
705 spin_unlock_bh(qdisc_lock(qdisc));
706 }
707 }
5aa70995
DM
708}
709
3e745dd6
DM
710/* Are all TX queues of the device empty? */
711static inline bool qdisc_all_tx_empty(const struct net_device *dev)
712{
e8a0464c 713 unsigned int i;
46e5da40
JF
714
715 rcu_read_lock();
e8a0464c
DM
716 for (i = 0; i < dev->num_tx_queues; i++) {
717 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
46e5da40 718 const struct Qdisc *q = rcu_dereference(txq->qdisc);
3e745dd6 719
1f5e6fdd 720 if (!qdisc_is_empty(q)) {
46e5da40 721 rcu_read_unlock();
e8a0464c 722 return false;
46e5da40 723 }
e8a0464c 724 }
46e5da40 725 rcu_read_unlock();
e8a0464c 726 return true;
3e745dd6
DM
727}
728
6fa9864b 729/* Are any of the TX qdiscs changing? */
05bdd2f1 730static inline bool qdisc_tx_changing(const struct net_device *dev)
6fa9864b 731{
e8a0464c 732 unsigned int i;
46e5da40 733
e8a0464c
DM
734 for (i = 0; i < dev->num_tx_queues; i++) {
735 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
46e5da40 736 if (rcu_access_pointer(txq->qdisc) != txq->qdisc_sleeping)
e8a0464c
DM
737 return true;
738 }
739 return false;
6fa9864b
DM
740}
741
e8a0464c 742/* Is the device using the noop qdisc on all queues? */
05297949
DM
743static inline bool qdisc_tx_is_noop(const struct net_device *dev)
744{
e8a0464c 745 unsigned int i;
46e5da40 746
e8a0464c
DM
747 for (i = 0; i < dev->num_tx_queues; i++) {
748 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
46e5da40 749 if (rcu_access_pointer(txq->qdisc) != &noop_qdisc)
e8a0464c
DM
750 return false;
751 }
752 return true;
05297949
DM
753}
754
bfe0d029 755static inline unsigned int qdisc_pkt_len(const struct sk_buff *skb)
0abf77e5 756{
175f9c1b 757 return qdisc_skb_cb(skb)->pkt_len;
0abf77e5
JK
758}
759
c27f339a 760/* additional qdisc xmit flags (NET_XMIT_MASK in linux/netdevice.h) */
378a2f09
JP
761enum net_xmit_qdisc_t {
762 __NET_XMIT_STOLEN = 0x00010000,
c27f339a 763 __NET_XMIT_BYPASS = 0x00020000,
378a2f09
JP
764};
765
c27f339a 766#ifdef CONFIG_NET_CLS_ACT
378a2f09 767#define net_xmit_drop_count(e) ((e) & __NET_XMIT_STOLEN ? 0 : 1)
378a2f09
JP
768#else
769#define net_xmit_drop_count(e) (1)
770#endif
771
a2da570d
ED
772static inline void qdisc_calculate_pkt_len(struct sk_buff *skb,
773 const struct Qdisc *sch)
5f86173b 774{
3a682fbd 775#ifdef CONFIG_NET_SCHED
a2da570d
ED
776 struct qdisc_size_table *stab = rcu_dereference_bh(sch->stab);
777
778 if (stab)
779 __qdisc_calculate_pkt_len(skb, stab);
3a682fbd 780#endif
a2da570d
ED
781}
782
ac5c66f2 783static inline int qdisc_enqueue(struct sk_buff *skb, struct Qdisc *sch,
520ac30f 784 struct sk_buff **to_free)
a2da570d
ED
785{
786 qdisc_calculate_pkt_len(skb, sch);
ac5c66f2 787 return sch->enqueue(skb, sch, to_free);
5f86173b
JK
788}
789
38040702
AV
790static inline void _bstats_update(struct gnet_stats_basic_packed *bstats,
791 __u64 bytes, __u32 packets)
792{
793 bstats->bytes += bytes;
794 bstats->packets += packets;
795}
796
bfe0d029
ED
797static inline void bstats_update(struct gnet_stats_basic_packed *bstats,
798 const struct sk_buff *skb)
799{
38040702
AV
800 _bstats_update(bstats,
801 qdisc_pkt_len(skb),
802 skb_is_gso(skb) ? skb_shinfo(skb)->gso_segs : 1);
803}
804
805static inline void _bstats_cpu_update(struct gnet_stats_basic_cpu *bstats,
806 __u64 bytes, __u32 packets)
807{
808 u64_stats_update_begin(&bstats->syncp);
809 _bstats_update(&bstats->bstats, bytes, packets);
810 u64_stats_update_end(&bstats->syncp);
bfe0d029
ED
811}
812
24ea591d
ED
813static inline void bstats_cpu_update(struct gnet_stats_basic_cpu *bstats,
814 const struct sk_buff *skb)
22e0f8b9 815{
22e0f8b9
JF
816 u64_stats_update_begin(&bstats->syncp);
817 bstats_update(&bstats->bstats, skb);
818 u64_stats_update_end(&bstats->syncp);
819}
820
24ea591d
ED
821static inline void qdisc_bstats_cpu_update(struct Qdisc *sch,
822 const struct sk_buff *skb)
823{
824 bstats_cpu_update(this_cpu_ptr(sch->cpu_bstats), skb);
825}
826
bfe0d029
ED
827static inline void qdisc_bstats_update(struct Qdisc *sch,
828 const struct sk_buff *skb)
bbd8a0d3 829{
bfe0d029 830 bstats_update(&sch->bstats, skb);
bbd8a0d3
KK
831}
832
25331d6c
JF
833static inline void qdisc_qstats_backlog_dec(struct Qdisc *sch,
834 const struct sk_buff *skb)
835{
836 sch->qstats.backlog -= qdisc_pkt_len(skb);
837}
838
40bd0362
JF
839static inline void qdisc_qstats_cpu_backlog_dec(struct Qdisc *sch,
840 const struct sk_buff *skb)
841{
842 this_cpu_sub(sch->cpu_qstats->backlog, qdisc_pkt_len(skb));
843}
844
25331d6c
JF
845static inline void qdisc_qstats_backlog_inc(struct Qdisc *sch,
846 const struct sk_buff *skb)
847{
848 sch->qstats.backlog += qdisc_pkt_len(skb);
849}
850
40bd0362
JF
851static inline void qdisc_qstats_cpu_backlog_inc(struct Qdisc *sch,
852 const struct sk_buff *skb)
853{
854 this_cpu_add(sch->cpu_qstats->backlog, qdisc_pkt_len(skb));
855}
856
73eb628d 857static inline void qdisc_qstats_cpu_qlen_inc(struct Qdisc *sch)
40bd0362 858{
73eb628d 859 this_cpu_inc(sch->cpu_qstats->qlen);
40bd0362
JF
860}
861
73eb628d 862static inline void qdisc_qstats_cpu_qlen_dec(struct Qdisc *sch)
40bd0362 863{
73eb628d 864 this_cpu_dec(sch->cpu_qstats->qlen);
40bd0362
JF
865}
866
867static inline void qdisc_qstats_cpu_requeues_inc(struct Qdisc *sch)
868{
869 this_cpu_inc(sch->cpu_qstats->requeues);
870}
871
25331d6c
JF
872static inline void __qdisc_qstats_drop(struct Qdisc *sch, int count)
873{
874 sch->qstats.drops += count;
875}
876
24ea591d 877static inline void qstats_drop_inc(struct gnet_stats_queue *qstats)
25331d6c 878{
24ea591d 879 qstats->drops++;
25331d6c
JF
880}
881
24ea591d 882static inline void qstats_overlimit_inc(struct gnet_stats_queue *qstats)
b0ab6f92 883{
24ea591d
ED
884 qstats->overlimits++;
885}
b0ab6f92 886
24ea591d
ED
887static inline void qdisc_qstats_drop(struct Qdisc *sch)
888{
889 qstats_drop_inc(&sch->qstats);
890}
891
892static inline void qdisc_qstats_cpu_drop(struct Qdisc *sch)
893{
eb60a8dd 894 this_cpu_inc(sch->cpu_qstats->drops);
b0ab6f92
JF
895}
896
25331d6c
JF
897static inline void qdisc_qstats_overlimit(struct Qdisc *sch)
898{
899 sch->qstats.overlimits++;
900}
901
5dd431b6
PA
902static inline int qdisc_qstats_copy(struct gnet_dump *d, struct Qdisc *sch)
903{
904 __u32 qlen = qdisc_qlen_sum(sch);
905
906 return gnet_stats_copy_queue(d, sch->cpu_qstats, &sch->qstats, qlen);
907}
908
909static inline void qdisc_qstats_qlen_backlog(struct Qdisc *sch, __u32 *qlen,
910 __u32 *backlog)
911{
912 struct gnet_stats_queue qstats = { 0 };
913 __u32 len = qdisc_qlen_sum(sch);
914
915 __gnet_stats_copy_queue(&qstats, sch->cpu_qstats, &sch->qstats, len);
916 *qlen = qstats.qlen;
917 *backlog = qstats.backlog;
918}
919
e5f0e8f8
PA
920static inline void qdisc_tree_flush_backlog(struct Qdisc *sch)
921{
922 __u32 qlen, backlog;
923
924 qdisc_qstats_qlen_backlog(sch, &qlen, &backlog);
925 qdisc_tree_reduce_backlog(sch, qlen, backlog);
926}
927
928static inline void qdisc_purge_queue(struct Qdisc *sch)
929{
930 __u32 qlen, backlog;
931
932 qdisc_qstats_qlen_backlog(sch, &qlen, &backlog);
933 qdisc_reset(sch);
934 qdisc_tree_reduce_backlog(sch, qlen, backlog);
935}
936
48da34b7
FW
937static inline void qdisc_skb_head_init(struct qdisc_skb_head *qh)
938{
939 qh->head = NULL;
940 qh->tail = NULL;
941 qh->qlen = 0;
942}
943
aea890b8
DM
944static inline void __qdisc_enqueue_tail(struct sk_buff *skb,
945 struct qdisc_skb_head *qh)
9972b25d 946{
48da34b7
FW
947 struct sk_buff *last = qh->tail;
948
949 if (last) {
950 skb->next = NULL;
951 last->next = skb;
952 qh->tail = skb;
953 } else {
954 qh->tail = skb;
955 qh->head = skb;
956 }
957 qh->qlen++;
9972b25d
TG
958}
959
960static inline int qdisc_enqueue_tail(struct sk_buff *skb, struct Qdisc *sch)
961{
aea890b8
DM
962 __qdisc_enqueue_tail(skb, &sch->q);
963 qdisc_qstats_backlog_inc(sch, skb);
964 return NET_XMIT_SUCCESS;
9972b25d
TG
965}
966
59697730
DM
967static inline void __qdisc_enqueue_head(struct sk_buff *skb,
968 struct qdisc_skb_head *qh)
969{
970 skb->next = qh->head;
971
972 if (!qh->head)
973 qh->tail = skb;
974 qh->head = skb;
975 qh->qlen++;
976}
977
48da34b7 978static inline struct sk_buff *__qdisc_dequeue_head(struct qdisc_skb_head *qh)
9972b25d 979{
48da34b7
FW
980 struct sk_buff *skb = qh->head;
981
982 if (likely(skb != NULL)) {
983 qh->head = skb->next;
984 qh->qlen--;
985 if (qh->head == NULL)
986 qh->tail = NULL;
987 skb->next = NULL;
988 }
9972b25d 989
ec323368
FW
990 return skb;
991}
992
993static inline struct sk_buff *qdisc_dequeue_head(struct Qdisc *sch)
994{
995 struct sk_buff *skb = __qdisc_dequeue_head(&sch->q);
996
9190b3b3 997 if (likely(skb != NULL)) {
25331d6c 998 qdisc_qstats_backlog_dec(sch, skb);
9190b3b3
ED
999 qdisc_bstats_update(sch, skb);
1000 }
9972b25d
TG
1001
1002 return skb;
1003}
1004
520ac30f
ED
1005/* Instead of calling kfree_skb() while root qdisc lock is held,
1006 * queue the skb for future freeing at end of __dev_xmit_skb()
1007 */
1008static inline void __qdisc_drop(struct sk_buff *skb, struct sk_buff **to_free)
1009{
1010 skb->next = *to_free;
1011 *to_free = skb;
1012}
1013
35d889d1
AK
1014static inline void __qdisc_drop_all(struct sk_buff *skb,
1015 struct sk_buff **to_free)
1016{
1017 if (skb->prev)
1018 skb->prev->next = *to_free;
1019 else
1020 skb->next = *to_free;
1021 *to_free = skb;
1022}
1023
57dbb2d8 1024static inline unsigned int __qdisc_queue_drop_head(struct Qdisc *sch,
48da34b7 1025 struct qdisc_skb_head *qh,
520ac30f 1026 struct sk_buff **to_free)
57dbb2d8 1027{
48da34b7 1028 struct sk_buff *skb = __qdisc_dequeue_head(qh);
57dbb2d8
HPP
1029
1030 if (likely(skb != NULL)) {
1031 unsigned int len = qdisc_pkt_len(skb);
520ac30f 1032
25331d6c 1033 qdisc_qstats_backlog_dec(sch, skb);
520ac30f 1034 __qdisc_drop(skb, to_free);
57dbb2d8
HPP
1035 return len;
1036 }
1037
1038 return 0;
1039}
1040
48a8f519
PM
1041static inline struct sk_buff *qdisc_peek_head(struct Qdisc *sch)
1042{
48da34b7
FW
1043 const struct qdisc_skb_head *qh = &sch->q;
1044
1045 return qh->head;
48a8f519
PM
1046}
1047
77be155c
JP
1048/* generic pseudo peek method for non-work-conserving qdisc */
1049static inline struct sk_buff *qdisc_peek_dequeued(struct Qdisc *sch)
1050{
a53851e2
JF
1051 struct sk_buff *skb = skb_peek(&sch->gso_skb);
1052
77be155c 1053 /* we can reuse ->gso_skb because peek isn't called for root qdiscs */
a53851e2
JF
1054 if (!skb) {
1055 skb = sch->dequeue(sch);
1056
1057 if (skb) {
1058 __skb_queue_head(&sch->gso_skb, skb);
61c9eaf9 1059 /* it's still part of the queue */
a53851e2 1060 qdisc_qstats_backlog_inc(sch, skb);
61c9eaf9 1061 sch->q.qlen++;
a27758ff 1062 }
61c9eaf9 1063 }
77be155c 1064
a53851e2 1065 return skb;
77be155c
JP
1066}
1067
8a53e616
PA
1068static inline void qdisc_update_stats_at_dequeue(struct Qdisc *sch,
1069 struct sk_buff *skb)
1070{
1071 if (qdisc_is_percpu_stats(sch)) {
1072 qdisc_qstats_cpu_backlog_dec(sch, skb);
1073 qdisc_bstats_cpu_update(sch, skb);
73eb628d 1074 qdisc_qstats_cpu_qlen_dec(sch);
8a53e616
PA
1075 } else {
1076 qdisc_qstats_backlog_dec(sch, skb);
1077 qdisc_bstats_update(sch, skb);
1078 sch->q.qlen--;
1079 }
1080}
1081
1082static inline void qdisc_update_stats_at_enqueue(struct Qdisc *sch,
1083 unsigned int pkt_len)
1084{
1085 if (qdisc_is_percpu_stats(sch)) {
73eb628d 1086 qdisc_qstats_cpu_qlen_inc(sch);
8a53e616
PA
1087 this_cpu_add(sch->cpu_qstats->backlog, pkt_len);
1088 } else {
1089 sch->qstats.backlog += pkt_len;
1090 sch->q.qlen++;
1091 }
1092}
1093
77be155c
JP
1094/* use instead of qdisc->dequeue() for all qdiscs queried with ->peek() */
1095static inline struct sk_buff *qdisc_dequeue_peeked(struct Qdisc *sch)
1096{
a53851e2 1097 struct sk_buff *skb = skb_peek(&sch->gso_skb);
77be155c 1098
61c9eaf9 1099 if (skb) {
a53851e2 1100 skb = __skb_dequeue(&sch->gso_skb);
9c01c9f1
PA
1101 if (qdisc_is_percpu_stats(sch)) {
1102 qdisc_qstats_cpu_backlog_dec(sch, skb);
73eb628d 1103 qdisc_qstats_cpu_qlen_dec(sch);
9c01c9f1
PA
1104 } else {
1105 qdisc_qstats_backlog_dec(sch, skb);
1106 sch->q.qlen--;
1107 }
61c9eaf9 1108 } else {
77be155c 1109 skb = sch->dequeue(sch);
61c9eaf9 1110 }
77be155c
JP
1111
1112 return skb;
1113}
1114
48da34b7 1115static inline void __qdisc_reset_queue(struct qdisc_skb_head *qh)
9972b25d
TG
1116{
1117 /*
1118 * We do not know the backlog in bytes of this list, it
1119 * is up to the caller to correct it
1120 */
48da34b7
FW
1121 ASSERT_RTNL();
1122 if (qh->qlen) {
1123 rtnl_kfree_skbs(qh->head, qh->tail);
1124
1125 qh->head = NULL;
1126 qh->tail = NULL;
1127 qh->qlen = 0;
1b5c5493 1128 }
9972b25d
TG
1129}
1130
1131static inline void qdisc_reset_queue(struct Qdisc *sch)
1132{
1b5c5493 1133 __qdisc_reset_queue(&sch->q);
9972b25d
TG
1134 sch->qstats.backlog = 0;
1135}
1136
86a7996c
WC
1137static inline struct Qdisc *qdisc_replace(struct Qdisc *sch, struct Qdisc *new,
1138 struct Qdisc **pold)
1139{
1140 struct Qdisc *old;
1141
1142 sch_tree_lock(sch);
1143 old = *pold;
1144 *pold = new;
e5f0e8f8
PA
1145 if (old != NULL)
1146 qdisc_tree_flush_backlog(old);
86a7996c
WC
1147 sch_tree_unlock(sch);
1148
1149 return old;
1150}
1151
1b5c5493
ED
1152static inline void rtnl_qdisc_drop(struct sk_buff *skb, struct Qdisc *sch)
1153{
1154 rtnl_kfree_skbs(skb, skb);
1155 qdisc_qstats_drop(sch);
1156}
1157
40bd0362
JF
1158static inline int qdisc_drop_cpu(struct sk_buff *skb, struct Qdisc *sch,
1159 struct sk_buff **to_free)
1160{
1161 __qdisc_drop(skb, to_free);
1162 qdisc_qstats_cpu_drop(sch);
1163
1164 return NET_XMIT_DROP;
1165}
520ac30f
ED
1166
1167static inline int qdisc_drop(struct sk_buff *skb, struct Qdisc *sch,
1168 struct sk_buff **to_free)
9972b25d 1169{
520ac30f 1170 __qdisc_drop(skb, to_free);
25331d6c 1171 qdisc_qstats_drop(sch);
9972b25d
TG
1172
1173 return NET_XMIT_DROP;
1174}
1175
35d889d1
AK
1176static inline int qdisc_drop_all(struct sk_buff *skb, struct Qdisc *sch,
1177 struct sk_buff **to_free)
1178{
1179 __qdisc_drop_all(skb, to_free);
1180 qdisc_qstats_drop(sch);
1181
1182 return NET_XMIT_DROP;
1183}
1184
e9bef55d
JDB
1185/* Length to Time (L2T) lookup in a qdisc_rate_table, to determine how
1186 long it will take to send a packet given its size.
1187 */
1188static inline u32 qdisc_l2t(struct qdisc_rate_table* rtab, unsigned int pktlen)
1189{
e08b0998
JDB
1190 int slot = pktlen + rtab->rate.cell_align + rtab->rate.overhead;
1191 if (slot < 0)
1192 slot = 0;
e9bef55d
JDB
1193 slot >>= rtab->rate.cell_log;
1194 if (slot > 255)
a02cec21 1195 return rtab->data[255]*(slot >> 8) + rtab->data[slot & 0xFF];
e9bef55d
JDB
1196 return rtab->data[slot];
1197}
1198
292f1c7f 1199struct psched_ratecfg {
130d3d68 1200 u64 rate_bytes_ps; /* bytes per second */
01cb71d2
ED
1201 u32 mult;
1202 u16 overhead;
8a8e3d84 1203 u8 linklayer;
01cb71d2 1204 u8 shift;
292f1c7f
JP
1205};
1206
1207static inline u64 psched_l2t_ns(const struct psched_ratecfg *r,
1208 unsigned int len)
1209{
8a8e3d84
JDB
1210 len += r->overhead;
1211
1212 if (unlikely(r->linklayer == TC_LINKLAYER_ATM))
1213 return ((u64)(DIV_ROUND_UP(len,48)*53) * r->mult) >> r->shift;
1214
1215 return ((u64)len * r->mult) >> r->shift;
292f1c7f
JP
1216}
1217
5c15257f 1218void psched_ratecfg_precompute(struct psched_ratecfg *r,
3e1e3aae
ED
1219 const struct tc_ratespec *conf,
1220 u64 rate64);
292f1c7f 1221
01cb71d2
ED
1222static inline void psched_ratecfg_getrate(struct tc_ratespec *res,
1223 const struct psched_ratecfg *r)
292f1c7f 1224{
01cb71d2 1225 memset(res, 0, sizeof(*res));
3e1e3aae
ED
1226
1227 /* legacy struct tc_ratespec has a 32bit @rate field
1228 * Qdisc using 64bit rate should add new attributes
1229 * in order to maintain compatibility.
1230 */
1231 res->rate = min_t(u64, r->rate_bytes_ps, ~0U);
1232
01cb71d2 1233 res->overhead = r->overhead;
8a8e3d84 1234 res->linklayer = (r->linklayer & TC_LINKLAYER_MASK);
292f1c7f
JP
1235}
1236
46209401
JP
1237/* Mini Qdisc serves for specific needs of ingress/clsact Qdisc.
1238 * The fast path only needs to access filter list and to update stats
1239 */
1240struct mini_Qdisc {
1241 struct tcf_proto *filter_list;
7d17c544 1242 struct tcf_block *block;
46209401
JP
1243 struct gnet_stats_basic_cpu __percpu *cpu_bstats;
1244 struct gnet_stats_queue __percpu *cpu_qstats;
1245 struct rcu_head rcu;
1246};
1247
1248static inline void mini_qdisc_bstats_cpu_update(struct mini_Qdisc *miniq,
1249 const struct sk_buff *skb)
1250{
1251 bstats_cpu_update(this_cpu_ptr(miniq->cpu_bstats), skb);
1252}
1253
1254static inline void mini_qdisc_qstats_cpu_drop(struct mini_Qdisc *miniq)
1255{
1256 this_cpu_inc(miniq->cpu_qstats->drops);
1257}
1258
1259struct mini_Qdisc_pair {
1260 struct mini_Qdisc miniq1;
1261 struct mini_Qdisc miniq2;
1262 struct mini_Qdisc __rcu **p_miniq;
1263};
1264
1265void mini_qdisc_pair_swap(struct mini_Qdisc_pair *miniqp,
1266 struct tcf_proto *tp_head);
1267void mini_qdisc_pair_init(struct mini_Qdisc_pair *miniqp, struct Qdisc *qdisc,
1268 struct mini_Qdisc __rcu **p_miniq);
7d17c544
PB
1269void mini_qdisc_pair_block_init(struct mini_Qdisc_pair *miniqp,
1270 struct tcf_block *block);
46209401 1271
c129412f 1272int sch_frag_xmit_hook(struct sk_buff *skb, int (*xmit)(struct sk_buff *skb));
cd11b164 1273
1da177e4 1274#endif