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