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