Complete the renaming to TuxOnIce with function names, vars etc.
[linux-2.6/suspend2-head.git] / net / sched / sch_htb.c
blobb417a95df3223e4880f5b654abe7e98c5f424d09
1 /*
2 * net/sched/sch_htb.c Hierarchical token bucket, feed tree version
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
9 * Authors: Martin Devera, <devik@cdi.cz>
11 * Credits (in time order) for older HTB versions:
12 * Stef Coene <stef.coene@docum.org>
13 * HTB support at LARTC mailing list
14 * Ondrej Kraus, <krauso@barr.cz>
15 * found missing INIT_QDISC(htb)
16 * Vladimir Smelhaus, Aamer Akhter, Bert Hubert
17 * helped a lot to locate nasty class stall bug
18 * Andi Kleen, Jamal Hadi, Bert Hubert
19 * code review and helpful comments on shaping
20 * Tomasz Wrona, <tw@eter.tym.pl>
21 * created test case so that I was able to fix nasty bug
22 * Wilfried Weissmann
23 * spotted bug in dequeue code and helped with fix
24 * Jiri Fojtasek
25 * fixed requeue routine
26 * and many others. thanks.
28 * $Id: sch_htb.c,v 1.25 2003/12/07 11:08:25 devik Exp devik $
30 #include <linux/module.h>
31 #include <linux/types.h>
32 #include <linux/kernel.h>
33 #include <linux/string.h>
34 #include <linux/errno.h>
35 #include <linux/skbuff.h>
36 #include <linux/list.h>
37 #include <linux/compiler.h>
38 #include <linux/rbtree.h>
39 #include <net/netlink.h>
40 #include <net/pkt_sched.h>
42 /* HTB algorithm.
43 Author: devik@cdi.cz
44 ========================================================================
45 HTB is like TBF with multiple classes. It is also similar to CBQ because
46 it allows to assign priority to each class in hierarchy.
47 In fact it is another implementation of Floyd's formal sharing.
49 Levels:
50 Each class is assigned level. Leaf has ALWAYS level 0 and root
51 classes have level TC_HTB_MAXDEPTH-1. Interior nodes has level
52 one less than their parent.
55 #define HTB_HSIZE 16 /* classid hash size */
56 #define HTB_HYSTERESIS 1 /* whether to use mode hysteresis for speedup */
57 #define HTB_VER 0x30011 /* major must be matched with number suplied by TC as version */
59 #if HTB_VER >> 16 != TC_HTB_PROTOVER
60 #error "Mismatched sch_htb.c and pkt_sch.h"
61 #endif
63 /* used internaly to keep status of single class */
64 enum htb_cmode {
65 HTB_CANT_SEND, /* class can't send and can't borrow */
66 HTB_MAY_BORROW, /* class can't send but may borrow */
67 HTB_CAN_SEND /* class can send */
70 /* interior & leaf nodes; props specific to leaves are marked L: */
71 struct htb_class {
72 /* general class parameters */
73 u32 classid;
74 struct gnet_stats_basic bstats;
75 struct gnet_stats_queue qstats;
76 struct gnet_stats_rate_est rate_est;
77 struct tc_htb_xstats xstats; /* our special stats */
78 int refcnt; /* usage count of this class */
80 /* topology */
81 int level; /* our level (see above) */
82 struct htb_class *parent; /* parent class */
83 struct hlist_node hlist; /* classid hash list item */
84 struct list_head sibling; /* sibling list item */
85 struct list_head children; /* children list */
87 union {
88 struct htb_class_leaf {
89 struct Qdisc *q;
90 int prio;
91 int aprio;
92 int quantum;
93 int deficit[TC_HTB_MAXDEPTH];
94 struct list_head drop_list;
95 } leaf;
96 struct htb_class_inner {
97 struct rb_root feed[TC_HTB_NUMPRIO]; /* feed trees */
98 struct rb_node *ptr[TC_HTB_NUMPRIO]; /* current class ptr */
99 /* When class changes from state 1->2 and disconnects from
100 parent's feed then we lost ptr value and start from the
101 first child again. Here we store classid of the
102 last valid ptr (used when ptr is NULL). */
103 u32 last_ptr_id[TC_HTB_NUMPRIO];
104 } inner;
105 } un;
106 struct rb_node node[TC_HTB_NUMPRIO]; /* node for self or feed tree */
107 struct rb_node pq_node; /* node for event queue */
108 psched_time_t pq_key;
110 int prio_activity; /* for which prios are we active */
111 enum htb_cmode cmode; /* current mode of the class */
113 /* class attached filters */
114 struct tcf_proto *filter_list;
115 int filter_cnt;
117 int warned; /* only one warning about non work conserving .. */
119 /* token bucket parameters */
120 struct qdisc_rate_table *rate; /* rate table of the class itself */
121 struct qdisc_rate_table *ceil; /* ceiling rate (limits borrows too) */
122 long buffer, cbuffer; /* token bucket depth/rate */
123 psched_tdiff_t mbuffer; /* max wait time */
124 long tokens, ctokens; /* current number of tokens */
125 psched_time_t t_c; /* checkpoint time */
127 int prio; /* For parent to leaf return possible here */
128 int quantum; /* we do backup. Finally full replacement */
129 /* of un.leaf originals should be done. */
132 static inline long L2T(struct htb_class *cl, struct qdisc_rate_table *rate,
133 int size)
135 int slot = size >> rate->rate.cell_log;
136 if (slot > 255)
137 return (rate->data[255]*(slot >> 8) + rate->data[slot & 0xFF]);
138 return rate->data[slot];
141 struct htb_sched {
142 struct list_head root; /* root classes list */
143 struct hlist_head hash[HTB_HSIZE]; /* hashed by classid */
144 struct list_head drops[TC_HTB_NUMPRIO];/* active leaves (for drops) */
146 /* self list - roots of self generating tree */
147 struct rb_root row[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
148 int row_mask[TC_HTB_MAXDEPTH];
149 struct rb_node *ptr[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
150 u32 last_ptr_id[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
152 /* self wait list - roots of wait PQs per row */
153 struct rb_root wait_pq[TC_HTB_MAXDEPTH];
155 /* time of nearest event per level (row) */
156 psched_time_t near_ev_cache[TC_HTB_MAXDEPTH];
158 /* whether we hit non-work conserving class during this dequeue; we use */
159 int nwc_hit; /* this to disable mindelay complaint in dequeue */
161 int defcls; /* class where unclassified flows go to */
163 /* filters for qdisc itself */
164 struct tcf_proto *filter_list;
165 int filter_cnt;
167 int rate2quantum; /* quant = rate / rate2quantum */
168 psched_time_t now; /* cached dequeue time */
169 struct qdisc_watchdog watchdog;
171 /* non shaped skbs; let them go directly thru */
172 struct sk_buff_head direct_queue;
173 int direct_qlen; /* max qlen of above */
175 long direct_pkts;
178 /* compute hash of size HTB_HSIZE for given handle */
179 static inline int htb_hash(u32 h)
181 #if HTB_HSIZE != 16
182 #error "Declare new hash for your HTB_HSIZE"
183 #endif
184 h ^= h >> 8; /* stolen from cbq_hash */
185 h ^= h >> 4;
186 return h & 0xf;
189 /* find class in global hash table using given handle */
190 static inline struct htb_class *htb_find(u32 handle, struct Qdisc *sch)
192 struct htb_sched *q = qdisc_priv(sch);
193 struct hlist_node *p;
194 struct htb_class *cl;
196 if (TC_H_MAJ(handle) != sch->handle)
197 return NULL;
199 hlist_for_each_entry(cl, p, q->hash + htb_hash(handle), hlist) {
200 if (cl->classid == handle)
201 return cl;
203 return NULL;
207 * htb_classify - classify a packet into class
209 * It returns NULL if the packet should be dropped or -1 if the packet
210 * should be passed directly thru. In all other cases leaf class is returned.
211 * We allow direct class selection by classid in priority. The we examine
212 * filters in qdisc and in inner nodes (if higher filter points to the inner
213 * node). If we end up with classid MAJOR:0 we enqueue the skb into special
214 * internal fifo (direct). These packets then go directly thru. If we still
215 * have no valid leaf we try to use MAJOR:default leaf. It still unsuccessfull
216 * then finish and return direct queue.
218 #define HTB_DIRECT (struct htb_class*)-1
219 static inline u32 htb_classid(struct htb_class *cl)
221 return (cl && cl != HTB_DIRECT) ? cl->classid : TC_H_UNSPEC;
224 static struct htb_class *htb_classify(struct sk_buff *skb, struct Qdisc *sch,
225 int *qerr)
227 struct htb_sched *q = qdisc_priv(sch);
228 struct htb_class *cl;
229 struct tcf_result res;
230 struct tcf_proto *tcf;
231 int result;
233 /* allow to select class by setting skb->priority to valid classid;
234 note that nfmark can be used too by attaching filter fw with no
235 rules in it */
236 if (skb->priority == sch->handle)
237 return HTB_DIRECT; /* X:0 (direct flow) selected */
238 if ((cl = htb_find(skb->priority, sch)) != NULL && cl->level == 0)
239 return cl;
241 *qerr = NET_XMIT_BYPASS;
242 tcf = q->filter_list;
243 while (tcf && (result = tc_classify(skb, tcf, &res)) >= 0) {
244 #ifdef CONFIG_NET_CLS_ACT
245 switch (result) {
246 case TC_ACT_QUEUED:
247 case TC_ACT_STOLEN:
248 *qerr = NET_XMIT_SUCCESS;
249 case TC_ACT_SHOT:
250 return NULL;
252 #elif defined(CONFIG_NET_CLS_POLICE)
253 if (result == TC_POLICE_SHOT)
254 return HTB_DIRECT;
255 #endif
256 if ((cl = (void *)res.class) == NULL) {
257 if (res.classid == sch->handle)
258 return HTB_DIRECT; /* X:0 (direct flow) */
259 if ((cl = htb_find(res.classid, sch)) == NULL)
260 break; /* filter selected invalid classid */
262 if (!cl->level)
263 return cl; /* we hit leaf; return it */
265 /* we have got inner class; apply inner filter chain */
266 tcf = cl->filter_list;
268 /* classification failed; try to use default class */
269 cl = htb_find(TC_H_MAKE(TC_H_MAJ(sch->handle), q->defcls), sch);
270 if (!cl || cl->level)
271 return HTB_DIRECT; /* bad default .. this is safe bet */
272 return cl;
276 * htb_add_to_id_tree - adds class to the round robin list
278 * Routine adds class to the list (actually tree) sorted by classid.
279 * Make sure that class is not already on such list for given prio.
281 static void htb_add_to_id_tree(struct rb_root *root,
282 struct htb_class *cl, int prio)
284 struct rb_node **p = &root->rb_node, *parent = NULL;
286 while (*p) {
287 struct htb_class *c;
288 parent = *p;
289 c = rb_entry(parent, struct htb_class, node[prio]);
291 if (cl->classid > c->classid)
292 p = &parent->rb_right;
293 else
294 p = &parent->rb_left;
296 rb_link_node(&cl->node[prio], parent, p);
297 rb_insert_color(&cl->node[prio], root);
301 * htb_add_to_wait_tree - adds class to the event queue with delay
303 * The class is added to priority event queue to indicate that class will
304 * change its mode in cl->pq_key microseconds. Make sure that class is not
305 * already in the queue.
307 static void htb_add_to_wait_tree(struct htb_sched *q,
308 struct htb_class *cl, long delay)
310 struct rb_node **p = &q->wait_pq[cl->level].rb_node, *parent = NULL;
312 cl->pq_key = q->now + delay;
313 if (cl->pq_key == q->now)
314 cl->pq_key++;
316 /* update the nearest event cache */
317 if (q->near_ev_cache[cl->level] > cl->pq_key)
318 q->near_ev_cache[cl->level] = cl->pq_key;
320 while (*p) {
321 struct htb_class *c;
322 parent = *p;
323 c = rb_entry(parent, struct htb_class, pq_node);
324 if (cl->pq_key >= c->pq_key)
325 p = &parent->rb_right;
326 else
327 p = &parent->rb_left;
329 rb_link_node(&cl->pq_node, parent, p);
330 rb_insert_color(&cl->pq_node, &q->wait_pq[cl->level]);
334 * htb_next_rb_node - finds next node in binary tree
336 * When we are past last key we return NULL.
337 * Average complexity is 2 steps per call.
339 static inline void htb_next_rb_node(struct rb_node **n)
341 *n = rb_next(*n);
345 * htb_add_class_to_row - add class to its row
347 * The class is added to row at priorities marked in mask.
348 * It does nothing if mask == 0.
350 static inline void htb_add_class_to_row(struct htb_sched *q,
351 struct htb_class *cl, int mask)
353 q->row_mask[cl->level] |= mask;
354 while (mask) {
355 int prio = ffz(~mask);
356 mask &= ~(1 << prio);
357 htb_add_to_id_tree(q->row[cl->level] + prio, cl, prio);
361 /* If this triggers, it is a bug in this code, but it need not be fatal */
362 static void htb_safe_rb_erase(struct rb_node *rb, struct rb_root *root)
364 if (RB_EMPTY_NODE(rb)) {
365 WARN_ON(1);
366 } else {
367 rb_erase(rb, root);
368 RB_CLEAR_NODE(rb);
374 * htb_remove_class_from_row - removes class from its row
376 * The class is removed from row at priorities marked in mask.
377 * It does nothing if mask == 0.
379 static inline void htb_remove_class_from_row(struct htb_sched *q,
380 struct htb_class *cl, int mask)
382 int m = 0;
384 while (mask) {
385 int prio = ffz(~mask);
387 mask &= ~(1 << prio);
388 if (q->ptr[cl->level][prio] == cl->node + prio)
389 htb_next_rb_node(q->ptr[cl->level] + prio);
391 htb_safe_rb_erase(cl->node + prio, q->row[cl->level] + prio);
392 if (!q->row[cl->level][prio].rb_node)
393 m |= 1 << prio;
395 q->row_mask[cl->level] &= ~m;
399 * htb_activate_prios - creates active classe's feed chain
401 * The class is connected to ancestors and/or appropriate rows
402 * for priorities it is participating on. cl->cmode must be new
403 * (activated) mode. It does nothing if cl->prio_activity == 0.
405 static void htb_activate_prios(struct htb_sched *q, struct htb_class *cl)
407 struct htb_class *p = cl->parent;
408 long m, mask = cl->prio_activity;
410 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
411 m = mask;
412 while (m) {
413 int prio = ffz(~m);
414 m &= ~(1 << prio);
416 if (p->un.inner.feed[prio].rb_node)
417 /* parent already has its feed in use so that
418 reset bit in mask as parent is already ok */
419 mask &= ~(1 << prio);
421 htb_add_to_id_tree(p->un.inner.feed + prio, cl, prio);
423 p->prio_activity |= mask;
424 cl = p;
425 p = cl->parent;
428 if (cl->cmode == HTB_CAN_SEND && mask)
429 htb_add_class_to_row(q, cl, mask);
433 * htb_deactivate_prios - remove class from feed chain
435 * cl->cmode must represent old mode (before deactivation). It does
436 * nothing if cl->prio_activity == 0. Class is removed from all feed
437 * chains and rows.
439 static void htb_deactivate_prios(struct htb_sched *q, struct htb_class *cl)
441 struct htb_class *p = cl->parent;
442 long m, mask = cl->prio_activity;
444 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
445 m = mask;
446 mask = 0;
447 while (m) {
448 int prio = ffz(~m);
449 m &= ~(1 << prio);
451 if (p->un.inner.ptr[prio] == cl->node + prio) {
452 /* we are removing child which is pointed to from
453 parent feed - forget the pointer but remember
454 classid */
455 p->un.inner.last_ptr_id[prio] = cl->classid;
456 p->un.inner.ptr[prio] = NULL;
459 htb_safe_rb_erase(cl->node + prio, p->un.inner.feed + prio);
461 if (!p->un.inner.feed[prio].rb_node)
462 mask |= 1 << prio;
465 p->prio_activity &= ~mask;
466 cl = p;
467 p = cl->parent;
470 if (cl->cmode == HTB_CAN_SEND && mask)
471 htb_remove_class_from_row(q, cl, mask);
474 #if HTB_HYSTERESIS
475 static inline long htb_lowater(const struct htb_class *cl)
477 return cl->cmode != HTB_CANT_SEND ? -cl->cbuffer : 0;
479 static inline long htb_hiwater(const struct htb_class *cl)
481 return cl->cmode == HTB_CAN_SEND ? -cl->buffer : 0;
483 #else
484 #define htb_lowater(cl) (0)
485 #define htb_hiwater(cl) (0)
486 #endif
489 * htb_class_mode - computes and returns current class mode
491 * It computes cl's mode at time cl->t_c+diff and returns it. If mode
492 * is not HTB_CAN_SEND then cl->pq_key is updated to time difference
493 * from now to time when cl will change its state.
494 * Also it is worth to note that class mode doesn't change simply
495 * at cl->{c,}tokens == 0 but there can rather be hysteresis of
496 * 0 .. -cl->{c,}buffer range. It is meant to limit number of
497 * mode transitions per time unit. The speed gain is about 1/6.
499 static inline enum htb_cmode
500 htb_class_mode(struct htb_class *cl, long *diff)
502 long toks;
504 if ((toks = (cl->ctokens + *diff)) < htb_lowater(cl)) {
505 *diff = -toks;
506 return HTB_CANT_SEND;
509 if ((toks = (cl->tokens + *diff)) >= htb_hiwater(cl))
510 return HTB_CAN_SEND;
512 *diff = -toks;
513 return HTB_MAY_BORROW;
517 * htb_change_class_mode - changes classe's mode
519 * This should be the only way how to change classe's mode under normal
520 * cirsumstances. Routine will update feed lists linkage, change mode
521 * and add class to the wait event queue if appropriate. New mode should
522 * be different from old one and cl->pq_key has to be valid if changing
523 * to mode other than HTB_CAN_SEND (see htb_add_to_wait_tree).
525 static void
526 htb_change_class_mode(struct htb_sched *q, struct htb_class *cl, long *diff)
528 enum htb_cmode new_mode = htb_class_mode(cl, diff);
530 if (new_mode == cl->cmode)
531 return;
533 if (cl->prio_activity) { /* not necessary: speed optimization */
534 if (cl->cmode != HTB_CANT_SEND)
535 htb_deactivate_prios(q, cl);
536 cl->cmode = new_mode;
537 if (new_mode != HTB_CANT_SEND)
538 htb_activate_prios(q, cl);
539 } else
540 cl->cmode = new_mode;
544 * htb_activate - inserts leaf cl into appropriate active feeds
546 * Routine learns (new) priority of leaf and activates feed chain
547 * for the prio. It can be called on already active leaf safely.
548 * It also adds leaf into droplist.
550 static inline void htb_activate(struct htb_sched *q, struct htb_class *cl)
552 BUG_TRAP(!cl->level && cl->un.leaf.q && cl->un.leaf.q->q.qlen);
554 if (!cl->prio_activity) {
555 cl->prio_activity = 1 << (cl->un.leaf.aprio = cl->un.leaf.prio);
556 htb_activate_prios(q, cl);
557 list_add_tail(&cl->un.leaf.drop_list,
558 q->drops + cl->un.leaf.aprio);
563 * htb_deactivate - remove leaf cl from active feeds
565 * Make sure that leaf is active. In the other words it can't be called
566 * with non-active leaf. It also removes class from the drop list.
568 static inline void htb_deactivate(struct htb_sched *q, struct htb_class *cl)
570 BUG_TRAP(cl->prio_activity);
572 htb_deactivate_prios(q, cl);
573 cl->prio_activity = 0;
574 list_del_init(&cl->un.leaf.drop_list);
577 static int htb_enqueue(struct sk_buff *skb, struct Qdisc *sch)
579 int ret;
580 struct htb_sched *q = qdisc_priv(sch);
581 struct htb_class *cl = htb_classify(skb, sch, &ret);
583 if (cl == HTB_DIRECT) {
584 /* enqueue to helper queue */
585 if (q->direct_queue.qlen < q->direct_qlen) {
586 __skb_queue_tail(&q->direct_queue, skb);
587 q->direct_pkts++;
588 } else {
589 kfree_skb(skb);
590 sch->qstats.drops++;
591 return NET_XMIT_DROP;
593 #ifdef CONFIG_NET_CLS_ACT
594 } else if (!cl) {
595 if (ret == NET_XMIT_BYPASS)
596 sch->qstats.drops++;
597 kfree_skb(skb);
598 return ret;
599 #endif
600 } else if (cl->un.leaf.q->enqueue(skb, cl->un.leaf.q) !=
601 NET_XMIT_SUCCESS) {
602 sch->qstats.drops++;
603 cl->qstats.drops++;
604 return NET_XMIT_DROP;
605 } else {
606 cl->bstats.packets +=
607 skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
608 cl->bstats.bytes += skb->len;
609 htb_activate(q, cl);
612 sch->q.qlen++;
613 sch->bstats.packets += skb_is_gso(skb)?skb_shinfo(skb)->gso_segs:1;
614 sch->bstats.bytes += skb->len;
615 return NET_XMIT_SUCCESS;
618 /* TODO: requeuing packet charges it to policers again !! */
619 static int htb_requeue(struct sk_buff *skb, struct Qdisc *sch)
621 struct htb_sched *q = qdisc_priv(sch);
622 int ret = NET_XMIT_SUCCESS;
623 struct htb_class *cl = htb_classify(skb, sch, &ret);
624 struct sk_buff *tskb;
626 if (cl == HTB_DIRECT || !cl) {
627 /* enqueue to helper queue */
628 if (q->direct_queue.qlen < q->direct_qlen && cl) {
629 __skb_queue_head(&q->direct_queue, skb);
630 } else {
631 __skb_queue_head(&q->direct_queue, skb);
632 tskb = __skb_dequeue_tail(&q->direct_queue);
633 kfree_skb(tskb);
634 sch->qstats.drops++;
635 return NET_XMIT_CN;
637 } else if (cl->un.leaf.q->ops->requeue(skb, cl->un.leaf.q) !=
638 NET_XMIT_SUCCESS) {
639 sch->qstats.drops++;
640 cl->qstats.drops++;
641 return NET_XMIT_DROP;
642 } else
643 htb_activate(q, cl);
645 sch->q.qlen++;
646 sch->qstats.requeues++;
647 return NET_XMIT_SUCCESS;
651 * htb_charge_class - charges amount "bytes" to leaf and ancestors
653 * Routine assumes that packet "bytes" long was dequeued from leaf cl
654 * borrowing from "level". It accounts bytes to ceil leaky bucket for
655 * leaf and all ancestors and to rate bucket for ancestors at levels
656 * "level" and higher. It also handles possible change of mode resulting
657 * from the update. Note that mode can also increase here (MAY_BORROW to
658 * CAN_SEND) because we can use more precise clock that event queue here.
659 * In such case we remove class from event queue first.
661 static void htb_charge_class(struct htb_sched *q, struct htb_class *cl,
662 int level, struct sk_buff *skb)
664 int bytes = skb->len;
665 long toks, diff;
666 enum htb_cmode old_mode;
668 #define HTB_ACCNT(T,B,R) toks = diff + cl->T; \
669 if (toks > cl->B) toks = cl->B; \
670 toks -= L2T(cl, cl->R, bytes); \
671 if (toks <= -cl->mbuffer) toks = 1-cl->mbuffer; \
672 cl->T = toks
674 while (cl) {
675 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
676 if (cl->level >= level) {
677 if (cl->level == level)
678 cl->xstats.lends++;
679 HTB_ACCNT(tokens, buffer, rate);
680 } else {
681 cl->xstats.borrows++;
682 cl->tokens += diff; /* we moved t_c; update tokens */
684 HTB_ACCNT(ctokens, cbuffer, ceil);
685 cl->t_c = q->now;
687 old_mode = cl->cmode;
688 diff = 0;
689 htb_change_class_mode(q, cl, &diff);
690 if (old_mode != cl->cmode) {
691 if (old_mode != HTB_CAN_SEND)
692 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
693 if (cl->cmode != HTB_CAN_SEND)
694 htb_add_to_wait_tree(q, cl, diff);
697 /* update byte stats except for leaves which are already updated */
698 if (cl->level) {
699 cl->bstats.bytes += bytes;
700 cl->bstats.packets += skb_is_gso(skb)?
701 skb_shinfo(skb)->gso_segs:1;
703 cl = cl->parent;
708 * htb_do_events - make mode changes to classes at the level
710 * Scans event queue for pending events and applies them. Returns time of
711 * next pending event (0 for no event in pq).
712 * Note: Applied are events whose have cl->pq_key <= q->now.
714 static psched_time_t htb_do_events(struct htb_sched *q, int level)
716 int i;
718 for (i = 0; i < 500; i++) {
719 struct htb_class *cl;
720 long diff;
721 struct rb_node *p = rb_first(&q->wait_pq[level]);
723 if (!p)
724 return 0;
726 cl = rb_entry(p, struct htb_class, pq_node);
727 if (cl->pq_key > q->now)
728 return cl->pq_key;
730 htb_safe_rb_erase(p, q->wait_pq + level);
731 diff = psched_tdiff_bounded(q->now, cl->t_c, cl->mbuffer);
732 htb_change_class_mode(q, cl, &diff);
733 if (cl->cmode != HTB_CAN_SEND)
734 htb_add_to_wait_tree(q, cl, diff);
736 if (net_ratelimit())
737 printk(KERN_WARNING "htb: too many events !\n");
738 return q->now + PSCHED_TICKS_PER_SEC / 10;
741 /* Returns class->node+prio from id-tree where classe's id is >= id. NULL
742 is no such one exists. */
743 static struct rb_node *htb_id_find_next_upper(int prio, struct rb_node *n,
744 u32 id)
746 struct rb_node *r = NULL;
747 while (n) {
748 struct htb_class *cl =
749 rb_entry(n, struct htb_class, node[prio]);
750 if (id == cl->classid)
751 return n;
753 if (id > cl->classid) {
754 n = n->rb_right;
755 } else {
756 r = n;
757 n = n->rb_left;
760 return r;
764 * htb_lookup_leaf - returns next leaf class in DRR order
766 * Find leaf where current feed pointers points to.
768 static struct htb_class *htb_lookup_leaf(struct rb_root *tree, int prio,
769 struct rb_node **pptr, u32 * pid)
771 int i;
772 struct {
773 struct rb_node *root;
774 struct rb_node **pptr;
775 u32 *pid;
776 } stk[TC_HTB_MAXDEPTH], *sp = stk;
778 BUG_TRAP(tree->rb_node);
779 sp->root = tree->rb_node;
780 sp->pptr = pptr;
781 sp->pid = pid;
783 for (i = 0; i < 65535; i++) {
784 if (!*sp->pptr && *sp->pid) {
785 /* ptr was invalidated but id is valid - try to recover
786 the original or next ptr */
787 *sp->pptr =
788 htb_id_find_next_upper(prio, sp->root, *sp->pid);
790 *sp->pid = 0; /* ptr is valid now so that remove this hint as it
791 can become out of date quickly */
792 if (!*sp->pptr) { /* we are at right end; rewind & go up */
793 *sp->pptr = sp->root;
794 while ((*sp->pptr)->rb_left)
795 *sp->pptr = (*sp->pptr)->rb_left;
796 if (sp > stk) {
797 sp--;
798 BUG_TRAP(*sp->pptr);
799 if (!*sp->pptr)
800 return NULL;
801 htb_next_rb_node(sp->pptr);
803 } else {
804 struct htb_class *cl;
805 cl = rb_entry(*sp->pptr, struct htb_class, node[prio]);
806 if (!cl->level)
807 return cl;
808 (++sp)->root = cl->un.inner.feed[prio].rb_node;
809 sp->pptr = cl->un.inner.ptr + prio;
810 sp->pid = cl->un.inner.last_ptr_id + prio;
813 BUG_TRAP(0);
814 return NULL;
817 /* dequeues packet at given priority and level; call only if
818 you are sure that there is active class at prio/level */
819 static struct sk_buff *htb_dequeue_tree(struct htb_sched *q, int prio,
820 int level)
822 struct sk_buff *skb = NULL;
823 struct htb_class *cl, *start;
824 /* look initial class up in the row */
825 start = cl = htb_lookup_leaf(q->row[level] + prio, prio,
826 q->ptr[level] + prio,
827 q->last_ptr_id[level] + prio);
829 do {
830 next:
831 BUG_TRAP(cl);
832 if (!cl)
833 return NULL;
835 /* class can be empty - it is unlikely but can be true if leaf
836 qdisc drops packets in enqueue routine or if someone used
837 graft operation on the leaf since last dequeue;
838 simply deactivate and skip such class */
839 if (unlikely(cl->un.leaf.q->q.qlen == 0)) {
840 struct htb_class *next;
841 htb_deactivate(q, cl);
843 /* row/level might become empty */
844 if ((q->row_mask[level] & (1 << prio)) == 0)
845 return NULL;
847 next = htb_lookup_leaf(q->row[level] + prio,
848 prio, q->ptr[level] + prio,
849 q->last_ptr_id[level] + prio);
851 if (cl == start) /* fix start if we just deleted it */
852 start = next;
853 cl = next;
854 goto next;
857 skb = cl->un.leaf.q->dequeue(cl->un.leaf.q);
858 if (likely(skb != NULL))
859 break;
860 if (!cl->warned) {
861 printk(KERN_WARNING
862 "htb: class %X isn't work conserving ?!\n",
863 cl->classid);
864 cl->warned = 1;
866 q->nwc_hit++;
867 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
868 ptr[0]) + prio);
869 cl = htb_lookup_leaf(q->row[level] + prio, prio,
870 q->ptr[level] + prio,
871 q->last_ptr_id[level] + prio);
873 } while (cl != start);
875 if (likely(skb != NULL)) {
876 if ((cl->un.leaf.deficit[level] -= skb->len) < 0) {
877 cl->un.leaf.deficit[level] += cl->un.leaf.quantum;
878 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
879 ptr[0]) + prio);
881 /* this used to be after charge_class but this constelation
882 gives us slightly better performance */
883 if (!cl->un.leaf.q->q.qlen)
884 htb_deactivate(q, cl);
885 htb_charge_class(q, cl, level, skb);
887 return skb;
890 static struct sk_buff *htb_dequeue(struct Qdisc *sch)
892 struct sk_buff *skb = NULL;
893 struct htb_sched *q = qdisc_priv(sch);
894 int level;
895 psched_time_t next_event;
897 /* try to dequeue direct packets as high prio (!) to minimize cpu work */
898 skb = __skb_dequeue(&q->direct_queue);
899 if (skb != NULL) {
900 sch->flags &= ~TCQ_F_THROTTLED;
901 sch->q.qlen--;
902 return skb;
905 if (!sch->q.qlen)
906 goto fin;
907 q->now = psched_get_time();
909 next_event = q->now + 5 * PSCHED_TICKS_PER_SEC;
910 q->nwc_hit = 0;
911 for (level = 0; level < TC_HTB_MAXDEPTH; level++) {
912 /* common case optimization - skip event handler quickly */
913 int m;
914 psched_time_t event;
916 if (q->now >= q->near_ev_cache[level]) {
917 event = htb_do_events(q, level);
918 if (!event)
919 event = q->now + PSCHED_TICKS_PER_SEC;
920 q->near_ev_cache[level] = event;
921 } else
922 event = q->near_ev_cache[level];
924 if (event && next_event > event)
925 next_event = event;
927 m = ~q->row_mask[level];
928 while (m != (int)(-1)) {
929 int prio = ffz(m);
930 m |= 1 << prio;
931 skb = htb_dequeue_tree(q, prio, level);
932 if (likely(skb != NULL)) {
933 sch->q.qlen--;
934 sch->flags &= ~TCQ_F_THROTTLED;
935 goto fin;
939 sch->qstats.overlimits++;
940 qdisc_watchdog_schedule(&q->watchdog, next_event);
941 fin:
942 return skb;
945 /* try to drop from each class (by prio) until one succeed */
946 static unsigned int htb_drop(struct Qdisc *sch)
948 struct htb_sched *q = qdisc_priv(sch);
949 int prio;
951 for (prio = TC_HTB_NUMPRIO - 1; prio >= 0; prio--) {
952 struct list_head *p;
953 list_for_each(p, q->drops + prio) {
954 struct htb_class *cl = list_entry(p, struct htb_class,
955 un.leaf.drop_list);
956 unsigned int len;
957 if (cl->un.leaf.q->ops->drop &&
958 (len = cl->un.leaf.q->ops->drop(cl->un.leaf.q))) {
959 sch->q.qlen--;
960 if (!cl->un.leaf.q->q.qlen)
961 htb_deactivate(q, cl);
962 return len;
966 return 0;
969 /* reset all classes */
970 /* always caled under BH & queue lock */
971 static void htb_reset(struct Qdisc *sch)
973 struct htb_sched *q = qdisc_priv(sch);
974 int i;
976 for (i = 0; i < HTB_HSIZE; i++) {
977 struct hlist_node *p;
978 struct htb_class *cl;
980 hlist_for_each_entry(cl, p, q->hash + i, hlist) {
981 if (cl->level)
982 memset(&cl->un.inner, 0, sizeof(cl->un.inner));
983 else {
984 if (cl->un.leaf.q)
985 qdisc_reset(cl->un.leaf.q);
986 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
988 cl->prio_activity = 0;
989 cl->cmode = HTB_CAN_SEND;
993 qdisc_watchdog_cancel(&q->watchdog);
994 __skb_queue_purge(&q->direct_queue);
995 sch->q.qlen = 0;
996 memset(q->row, 0, sizeof(q->row));
997 memset(q->row_mask, 0, sizeof(q->row_mask));
998 memset(q->wait_pq, 0, sizeof(q->wait_pq));
999 memset(q->ptr, 0, sizeof(q->ptr));
1000 for (i = 0; i < TC_HTB_NUMPRIO; i++)
1001 INIT_LIST_HEAD(q->drops + i);
1004 static int htb_init(struct Qdisc *sch, struct rtattr *opt)
1006 struct htb_sched *q = qdisc_priv(sch);
1007 struct rtattr *tb[TCA_HTB_INIT];
1008 struct tc_htb_glob *gopt;
1009 int i;
1010 if (!opt || rtattr_parse_nested(tb, TCA_HTB_INIT, opt) ||
1011 tb[TCA_HTB_INIT - 1] == NULL ||
1012 RTA_PAYLOAD(tb[TCA_HTB_INIT - 1]) < sizeof(*gopt)) {
1013 printk(KERN_ERR "HTB: hey probably you have bad tc tool ?\n");
1014 return -EINVAL;
1016 gopt = RTA_DATA(tb[TCA_HTB_INIT - 1]);
1017 if (gopt->version != HTB_VER >> 16) {
1018 printk(KERN_ERR
1019 "HTB: need tc/htb version %d (minor is %d), you have %d\n",
1020 HTB_VER >> 16, HTB_VER & 0xffff, gopt->version);
1021 return -EINVAL;
1024 INIT_LIST_HEAD(&q->root);
1025 for (i = 0; i < HTB_HSIZE; i++)
1026 INIT_HLIST_HEAD(q->hash + i);
1027 for (i = 0; i < TC_HTB_NUMPRIO; i++)
1028 INIT_LIST_HEAD(q->drops + i);
1030 qdisc_watchdog_init(&q->watchdog, sch);
1031 skb_queue_head_init(&q->direct_queue);
1033 q->direct_qlen = sch->dev->tx_queue_len;
1034 if (q->direct_qlen < 2) /* some devices have zero tx_queue_len */
1035 q->direct_qlen = 2;
1037 if ((q->rate2quantum = gopt->rate2quantum) < 1)
1038 q->rate2quantum = 1;
1039 q->defcls = gopt->defcls;
1041 return 0;
1044 static int htb_dump(struct Qdisc *sch, struct sk_buff *skb)
1046 struct htb_sched *q = qdisc_priv(sch);
1047 unsigned char *b = skb_tail_pointer(skb);
1048 struct rtattr *rta;
1049 struct tc_htb_glob gopt;
1050 spin_lock_bh(&sch->dev->queue_lock);
1051 gopt.direct_pkts = q->direct_pkts;
1053 gopt.version = HTB_VER;
1054 gopt.rate2quantum = q->rate2quantum;
1055 gopt.defcls = q->defcls;
1056 gopt.debug = 0;
1057 rta = (struct rtattr *)b;
1058 RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
1059 RTA_PUT(skb, TCA_HTB_INIT, sizeof(gopt), &gopt);
1060 rta->rta_len = skb_tail_pointer(skb) - b;
1061 spin_unlock_bh(&sch->dev->queue_lock);
1062 return skb->len;
1063 rtattr_failure:
1064 spin_unlock_bh(&sch->dev->queue_lock);
1065 nlmsg_trim(skb, skb_tail_pointer(skb));
1066 return -1;
1069 static int htb_dump_class(struct Qdisc *sch, unsigned long arg,
1070 struct sk_buff *skb, struct tcmsg *tcm)
1072 struct htb_class *cl = (struct htb_class *)arg;
1073 unsigned char *b = skb_tail_pointer(skb);
1074 struct rtattr *rta;
1075 struct tc_htb_opt opt;
1077 spin_lock_bh(&sch->dev->queue_lock);
1078 tcm->tcm_parent = cl->parent ? cl->parent->classid : TC_H_ROOT;
1079 tcm->tcm_handle = cl->classid;
1080 if (!cl->level && cl->un.leaf.q)
1081 tcm->tcm_info = cl->un.leaf.q->handle;
1083 rta = (struct rtattr *)b;
1084 RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
1086 memset(&opt, 0, sizeof(opt));
1088 opt.rate = cl->rate->rate;
1089 opt.buffer = cl->buffer;
1090 opt.ceil = cl->ceil->rate;
1091 opt.cbuffer = cl->cbuffer;
1092 opt.quantum = cl->un.leaf.quantum;
1093 opt.prio = cl->un.leaf.prio;
1094 opt.level = cl->level;
1095 RTA_PUT(skb, TCA_HTB_PARMS, sizeof(opt), &opt);
1096 rta->rta_len = skb_tail_pointer(skb) - b;
1097 spin_unlock_bh(&sch->dev->queue_lock);
1098 return skb->len;
1099 rtattr_failure:
1100 spin_unlock_bh(&sch->dev->queue_lock);
1101 nlmsg_trim(skb, b);
1102 return -1;
1105 static int
1106 htb_dump_class_stats(struct Qdisc *sch, unsigned long arg, struct gnet_dump *d)
1108 struct htb_class *cl = (struct htb_class *)arg;
1110 if (!cl->level && cl->un.leaf.q)
1111 cl->qstats.qlen = cl->un.leaf.q->q.qlen;
1112 cl->xstats.tokens = cl->tokens;
1113 cl->xstats.ctokens = cl->ctokens;
1115 if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
1116 gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 ||
1117 gnet_stats_copy_queue(d, &cl->qstats) < 0)
1118 return -1;
1120 return gnet_stats_copy_app(d, &cl->xstats, sizeof(cl->xstats));
1123 static int htb_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
1124 struct Qdisc **old)
1126 struct htb_class *cl = (struct htb_class *)arg;
1128 if (cl && !cl->level) {
1129 if (new == NULL &&
1130 (new = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops,
1131 cl->classid))
1132 == NULL)
1133 return -ENOBUFS;
1134 sch_tree_lock(sch);
1135 if ((*old = xchg(&cl->un.leaf.q, new)) != NULL) {
1136 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
1137 qdisc_reset(*old);
1139 sch_tree_unlock(sch);
1140 return 0;
1142 return -ENOENT;
1145 static struct Qdisc *htb_leaf(struct Qdisc *sch, unsigned long arg)
1147 struct htb_class *cl = (struct htb_class *)arg;
1148 return (cl && !cl->level) ? cl->un.leaf.q : NULL;
1151 static void htb_qlen_notify(struct Qdisc *sch, unsigned long arg)
1153 struct htb_class *cl = (struct htb_class *)arg;
1155 if (cl->un.leaf.q->q.qlen == 0)
1156 htb_deactivate(qdisc_priv(sch), cl);
1159 static unsigned long htb_get(struct Qdisc *sch, u32 classid)
1161 struct htb_class *cl = htb_find(classid, sch);
1162 if (cl)
1163 cl->refcnt++;
1164 return (unsigned long)cl;
1167 static inline int htb_parent_last_child(struct htb_class *cl)
1169 if (!cl->parent)
1170 /* the root class */
1171 return 0;
1173 if (!(cl->parent->children.next == &cl->sibling &&
1174 cl->parent->children.prev == &cl->sibling))
1175 /* not the last child */
1176 return 0;
1178 return 1;
1181 static void htb_parent_to_leaf(struct htb_class *cl, struct Qdisc *new_q)
1183 struct htb_class *parent = cl->parent;
1185 BUG_TRAP(!cl->level && cl->un.leaf.q && !cl->prio_activity);
1187 parent->level = 0;
1188 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
1189 INIT_LIST_HEAD(&parent->un.leaf.drop_list);
1190 parent->un.leaf.q = new_q ? new_q : &noop_qdisc;
1191 parent->un.leaf.quantum = parent->quantum;
1192 parent->un.leaf.prio = parent->prio;
1193 parent->tokens = parent->buffer;
1194 parent->ctokens = parent->cbuffer;
1195 parent->t_c = psched_get_time();
1196 parent->cmode = HTB_CAN_SEND;
1199 static void htb_destroy_class(struct Qdisc *sch, struct htb_class *cl)
1201 struct htb_sched *q = qdisc_priv(sch);
1203 if (!cl->level) {
1204 BUG_TRAP(cl->un.leaf.q);
1205 qdisc_destroy(cl->un.leaf.q);
1207 gen_kill_estimator(&cl->bstats, &cl->rate_est);
1208 qdisc_put_rtab(cl->rate);
1209 qdisc_put_rtab(cl->ceil);
1211 tcf_destroy_chain(cl->filter_list);
1213 while (!list_empty(&cl->children))
1214 htb_destroy_class(sch, list_entry(cl->children.next,
1215 struct htb_class, sibling));
1217 /* note: this delete may happen twice (see htb_delete) */
1218 hlist_del_init(&cl->hlist);
1219 list_del(&cl->sibling);
1221 if (cl->prio_activity)
1222 htb_deactivate(q, cl);
1224 if (cl->cmode != HTB_CAN_SEND)
1225 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
1227 kfree(cl);
1230 /* always caled under BH & queue lock */
1231 static void htb_destroy(struct Qdisc *sch)
1233 struct htb_sched *q = qdisc_priv(sch);
1235 qdisc_watchdog_cancel(&q->watchdog);
1236 /* This line used to be after htb_destroy_class call below
1237 and surprisingly it worked in 2.4. But it must precede it
1238 because filter need its target class alive to be able to call
1239 unbind_filter on it (without Oops). */
1240 tcf_destroy_chain(q->filter_list);
1242 while (!list_empty(&q->root))
1243 htb_destroy_class(sch, list_entry(q->root.next,
1244 struct htb_class, sibling));
1246 __skb_queue_purge(&q->direct_queue);
1249 static int htb_delete(struct Qdisc *sch, unsigned long arg)
1251 struct htb_sched *q = qdisc_priv(sch);
1252 struct htb_class *cl = (struct htb_class *)arg;
1253 unsigned int qlen;
1254 struct Qdisc *new_q = NULL;
1255 int last_child = 0;
1257 // TODO: why don't allow to delete subtree ? references ? does
1258 // tc subsys quarantee us that in htb_destroy it holds no class
1259 // refs so that we can remove children safely there ?
1260 if (!list_empty(&cl->children) || cl->filter_cnt)
1261 return -EBUSY;
1263 if (!cl->level && htb_parent_last_child(cl)) {
1264 new_q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops,
1265 cl->parent->classid);
1266 last_child = 1;
1269 sch_tree_lock(sch);
1271 if (!cl->level) {
1272 qlen = cl->un.leaf.q->q.qlen;
1273 qdisc_reset(cl->un.leaf.q);
1274 qdisc_tree_decrease_qlen(cl->un.leaf.q, qlen);
1277 /* delete from hash and active; remainder in destroy_class */
1278 hlist_del_init(&cl->hlist);
1280 if (cl->prio_activity)
1281 htb_deactivate(q, cl);
1283 if (last_child)
1284 htb_parent_to_leaf(cl, new_q);
1286 if (--cl->refcnt == 0)
1287 htb_destroy_class(sch, cl);
1289 sch_tree_unlock(sch);
1290 return 0;
1293 static void htb_put(struct Qdisc *sch, unsigned long arg)
1295 struct htb_class *cl = (struct htb_class *)arg;
1297 if (--cl->refcnt == 0)
1298 htb_destroy_class(sch, cl);
1301 static int htb_change_class(struct Qdisc *sch, u32 classid,
1302 u32 parentid, struct rtattr **tca,
1303 unsigned long *arg)
1305 int err = -EINVAL;
1306 struct htb_sched *q = qdisc_priv(sch);
1307 struct htb_class *cl = (struct htb_class *)*arg, *parent;
1308 struct rtattr *opt = tca[TCA_OPTIONS - 1];
1309 struct qdisc_rate_table *rtab = NULL, *ctab = NULL;
1310 struct rtattr *tb[TCA_HTB_RTAB];
1311 struct tc_htb_opt *hopt;
1313 /* extract all subattrs from opt attr */
1314 if (!opt || rtattr_parse_nested(tb, TCA_HTB_RTAB, opt) ||
1315 tb[TCA_HTB_PARMS - 1] == NULL ||
1316 RTA_PAYLOAD(tb[TCA_HTB_PARMS - 1]) < sizeof(*hopt))
1317 goto failure;
1319 parent = parentid == TC_H_ROOT ? NULL : htb_find(parentid, sch);
1321 hopt = RTA_DATA(tb[TCA_HTB_PARMS - 1]);
1323 rtab = qdisc_get_rtab(&hopt->rate, tb[TCA_HTB_RTAB - 1]);
1324 ctab = qdisc_get_rtab(&hopt->ceil, tb[TCA_HTB_CTAB - 1]);
1325 if (!rtab || !ctab)
1326 goto failure;
1328 if (!cl) { /* new class */
1329 struct Qdisc *new_q;
1330 int prio;
1331 struct {
1332 struct rtattr rta;
1333 struct gnet_estimator opt;
1334 } est = {
1335 .rta = {
1336 .rta_len = RTA_LENGTH(sizeof(est.opt)),
1337 .rta_type = TCA_RATE,
1339 .opt = {
1340 /* 4s interval, 16s averaging constant */
1341 .interval = 2,
1342 .ewma_log = 2,
1346 /* check for valid classid */
1347 if (!classid || TC_H_MAJ(classid ^ sch->handle)
1348 || htb_find(classid, sch))
1349 goto failure;
1351 /* check maximal depth */
1352 if (parent && parent->parent && parent->parent->level < 2) {
1353 printk(KERN_ERR "htb: tree is too deep\n");
1354 goto failure;
1356 err = -ENOBUFS;
1357 if ((cl = kzalloc(sizeof(*cl), GFP_KERNEL)) == NULL)
1358 goto failure;
1360 gen_new_estimator(&cl->bstats, &cl->rate_est,
1361 &sch->dev->queue_lock,
1362 tca[TCA_RATE-1] ? : &est.rta);
1363 cl->refcnt = 1;
1364 INIT_LIST_HEAD(&cl->sibling);
1365 INIT_HLIST_NODE(&cl->hlist);
1366 INIT_LIST_HEAD(&cl->children);
1367 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
1368 RB_CLEAR_NODE(&cl->pq_node);
1370 for (prio = 0; prio < TC_HTB_NUMPRIO; prio++)
1371 RB_CLEAR_NODE(&cl->node[prio]);
1373 /* create leaf qdisc early because it uses kmalloc(GFP_KERNEL)
1374 so that can't be used inside of sch_tree_lock
1375 -- thanks to Karlis Peisenieks */
1376 new_q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops, classid);
1377 sch_tree_lock(sch);
1378 if (parent && !parent->level) {
1379 unsigned int qlen = parent->un.leaf.q->q.qlen;
1381 /* turn parent into inner node */
1382 qdisc_reset(parent->un.leaf.q);
1383 qdisc_tree_decrease_qlen(parent->un.leaf.q, qlen);
1384 qdisc_destroy(parent->un.leaf.q);
1385 if (parent->prio_activity)
1386 htb_deactivate(q, parent);
1388 /* remove from evt list because of level change */
1389 if (parent->cmode != HTB_CAN_SEND) {
1390 htb_safe_rb_erase(&parent->pq_node, q->wait_pq);
1391 parent->cmode = HTB_CAN_SEND;
1393 parent->level = (parent->parent ? parent->parent->level
1394 : TC_HTB_MAXDEPTH) - 1;
1395 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
1397 /* leaf (we) needs elementary qdisc */
1398 cl->un.leaf.q = new_q ? new_q : &noop_qdisc;
1400 cl->classid = classid;
1401 cl->parent = parent;
1403 /* set class to be in HTB_CAN_SEND state */
1404 cl->tokens = hopt->buffer;
1405 cl->ctokens = hopt->cbuffer;
1406 cl->mbuffer = 60 * PSCHED_TICKS_PER_SEC; /* 1min */
1407 cl->t_c = psched_get_time();
1408 cl->cmode = HTB_CAN_SEND;
1410 /* attach to the hash list and parent's family */
1411 hlist_add_head(&cl->hlist, q->hash + htb_hash(classid));
1412 list_add_tail(&cl->sibling,
1413 parent ? &parent->children : &q->root);
1414 } else {
1415 if (tca[TCA_RATE-1])
1416 gen_replace_estimator(&cl->bstats, &cl->rate_est,
1417 &sch->dev->queue_lock,
1418 tca[TCA_RATE-1]);
1419 sch_tree_lock(sch);
1422 /* it used to be a nasty bug here, we have to check that node
1423 is really leaf before changing cl->un.leaf ! */
1424 if (!cl->level) {
1425 cl->un.leaf.quantum = rtab->rate.rate / q->rate2quantum;
1426 if (!hopt->quantum && cl->un.leaf.quantum < 1000) {
1427 printk(KERN_WARNING
1428 "HTB: quantum of class %X is small. Consider r2q change.\n",
1429 cl->classid);
1430 cl->un.leaf.quantum = 1000;
1432 if (!hopt->quantum && cl->un.leaf.quantum > 200000) {
1433 printk(KERN_WARNING
1434 "HTB: quantum of class %X is big. Consider r2q change.\n",
1435 cl->classid);
1436 cl->un.leaf.quantum = 200000;
1438 if (hopt->quantum)
1439 cl->un.leaf.quantum = hopt->quantum;
1440 if ((cl->un.leaf.prio = hopt->prio) >= TC_HTB_NUMPRIO)
1441 cl->un.leaf.prio = TC_HTB_NUMPRIO - 1;
1443 /* backup for htb_parent_to_leaf */
1444 cl->quantum = cl->un.leaf.quantum;
1445 cl->prio = cl->un.leaf.prio;
1448 cl->buffer = hopt->buffer;
1449 cl->cbuffer = hopt->cbuffer;
1450 if (cl->rate)
1451 qdisc_put_rtab(cl->rate);
1452 cl->rate = rtab;
1453 if (cl->ceil)
1454 qdisc_put_rtab(cl->ceil);
1455 cl->ceil = ctab;
1456 sch_tree_unlock(sch);
1458 *arg = (unsigned long)cl;
1459 return 0;
1461 failure:
1462 if (rtab)
1463 qdisc_put_rtab(rtab);
1464 if (ctab)
1465 qdisc_put_rtab(ctab);
1466 return err;
1469 static struct tcf_proto **htb_find_tcf(struct Qdisc *sch, unsigned long arg)
1471 struct htb_sched *q = qdisc_priv(sch);
1472 struct htb_class *cl = (struct htb_class *)arg;
1473 struct tcf_proto **fl = cl ? &cl->filter_list : &q->filter_list;
1475 return fl;
1478 static unsigned long htb_bind_filter(struct Qdisc *sch, unsigned long parent,
1479 u32 classid)
1481 struct htb_sched *q = qdisc_priv(sch);
1482 struct htb_class *cl = htb_find(classid, sch);
1484 /*if (cl && !cl->level) return 0;
1485 The line above used to be there to prevent attaching filters to
1486 leaves. But at least tc_index filter uses this just to get class
1487 for other reasons so that we have to allow for it.
1488 ----
1489 19.6.2002 As Werner explained it is ok - bind filter is just
1490 another way to "lock" the class - unlike "get" this lock can
1491 be broken by class during destroy IIUC.
1493 if (cl)
1494 cl->filter_cnt++;
1495 else
1496 q->filter_cnt++;
1497 return (unsigned long)cl;
1500 static void htb_unbind_filter(struct Qdisc *sch, unsigned long arg)
1502 struct htb_sched *q = qdisc_priv(sch);
1503 struct htb_class *cl = (struct htb_class *)arg;
1505 if (cl)
1506 cl->filter_cnt--;
1507 else
1508 q->filter_cnt--;
1511 static void htb_walk(struct Qdisc *sch, struct qdisc_walker *arg)
1513 struct htb_sched *q = qdisc_priv(sch);
1514 int i;
1516 if (arg->stop)
1517 return;
1519 for (i = 0; i < HTB_HSIZE; i++) {
1520 struct hlist_node *p;
1521 struct htb_class *cl;
1523 hlist_for_each_entry(cl, p, q->hash + i, hlist) {
1524 if (arg->count < arg->skip) {
1525 arg->count++;
1526 continue;
1528 if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
1529 arg->stop = 1;
1530 return;
1532 arg->count++;
1537 static struct Qdisc_class_ops htb_class_ops = {
1538 .graft = htb_graft,
1539 .leaf = htb_leaf,
1540 .qlen_notify = htb_qlen_notify,
1541 .get = htb_get,
1542 .put = htb_put,
1543 .change = htb_change_class,
1544 .delete = htb_delete,
1545 .walk = htb_walk,
1546 .tcf_chain = htb_find_tcf,
1547 .bind_tcf = htb_bind_filter,
1548 .unbind_tcf = htb_unbind_filter,
1549 .dump = htb_dump_class,
1550 .dump_stats = htb_dump_class_stats,
1553 static struct Qdisc_ops htb_qdisc_ops = {
1554 .next = NULL,
1555 .cl_ops = &htb_class_ops,
1556 .id = "htb",
1557 .priv_size = sizeof(struct htb_sched),
1558 .enqueue = htb_enqueue,
1559 .dequeue = htb_dequeue,
1560 .requeue = htb_requeue,
1561 .drop = htb_drop,
1562 .init = htb_init,
1563 .reset = htb_reset,
1564 .destroy = htb_destroy,
1565 .change = NULL /* htb_change */,
1566 .dump = htb_dump,
1567 .owner = THIS_MODULE,
1570 static int __init htb_module_init(void)
1572 return register_qdisc(&htb_qdisc_ops);
1574 static void __exit htb_module_exit(void)
1576 unregister_qdisc(&htb_qdisc_ops);
1579 module_init(htb_module_init)
1580 module_exit(htb_module_exit)
1581 MODULE_LICENSE("GPL");