blob: f76c20c0a109187d7da773f81a2f772788ca25c4 [file] [log] [blame]
Stephen Hemminger87990462006-08-10 23:35:16 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * net/sched/sch_htb.c Hierarchical token bucket, feed tree version
3 *
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.
8 *
9 * Authors: Martin Devera, <devik@cdi.cz>
10 *
11 * Credits (in time order) for older HTB versions:
12 * Stef Coene <stef.coene@docum.org>
13 * HTB support at LARTC mailing list
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090014 * Ondrej Kraus, <krauso@barr.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * 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.
27 *
28 * $Id: sch_htb.c,v 1.25 2003/12/07 11:08:25 devik Exp devik $
29 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
31#include <asm/uaccess.h>
32#include <asm/system.h>
33#include <linux/bitops.h>
34#include <linux/types.h>
35#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/string.h>
37#include <linux/mm.h>
38#include <linux/socket.h>
39#include <linux/sockios.h>
40#include <linux/in.h>
41#include <linux/errno.h>
42#include <linux/interrupt.h>
43#include <linux/if_ether.h>
44#include <linux/inet.h>
45#include <linux/netdevice.h>
46#include <linux/etherdevice.h>
47#include <linux/notifier.h>
48#include <net/ip.h>
49#include <net/route.h>
50#include <linux/skbuff.h>
51#include <linux/list.h>
52#include <linux/compiler.h>
53#include <net/sock.h>
54#include <net/pkt_sched.h>
55#include <linux/rbtree.h>
56
57/* HTB algorithm.
58 Author: devik@cdi.cz
59 ========================================================================
60 HTB is like TBF with multiple classes. It is also similar to CBQ because
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090061 it allows to assign priority to each class in hierarchy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 In fact it is another implementation of Floyd's formal sharing.
63
64 Levels:
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +090065 Each class is assigned level. Leaf has ALWAYS level 0 and root
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 classes have level TC_HTB_MAXDEPTH-1. Interior nodes has level
67 one less than their parent.
68*/
69
Stephen Hemminger87990462006-08-10 23:35:16 -070070#define HTB_HSIZE 16 /* classid hash size */
71#define HTB_EWMAC 2 /* rate average over HTB_EWMAC*HTB_HSIZE sec */
72#define HTB_RATECM 1 /* whether to use rate computer */
73#define HTB_HYSTERESIS 1 /* whether to use mode hysteresis for speedup */
74#define HTB_VER 0x30011 /* major must be matched with number suplied by TC as version */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76#if HTB_VER >> 16 != TC_HTB_PROTOVER
77#error "Mismatched sch_htb.c and pkt_sch.h"
78#endif
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/* used internaly to keep status of single class */
81enum htb_cmode {
Stephen Hemminger87990462006-08-10 23:35:16 -070082 HTB_CANT_SEND, /* class can't send and can't borrow */
83 HTB_MAY_BORROW, /* class can't send but may borrow */
84 HTB_CAN_SEND /* class can send */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
87/* interior & leaf nodes; props specific to leaves are marked L: */
Stephen Hemminger87990462006-08-10 23:35:16 -070088struct htb_class {
89 /* general class parameters */
90 u32 classid;
91 struct gnet_stats_basic bstats;
92 struct gnet_stats_queue qstats;
93 struct gnet_stats_rate_est rate_est;
94 struct tc_htb_xstats xstats; /* our special stats */
95 int refcnt; /* usage count of this class */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97#ifdef HTB_RATECM
Stephen Hemminger87990462006-08-10 23:35:16 -070098 /* rate measurement counters */
99 unsigned long rate_bytes, sum_bytes;
100 unsigned long rate_packets, sum_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif
102
Stephen Hemminger87990462006-08-10 23:35:16 -0700103 /* topology */
104 int level; /* our level (see above) */
105 struct htb_class *parent; /* parent class */
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700106 struct hlist_node hlist; /* classid hash list item */
Stephen Hemminger87990462006-08-10 23:35:16 -0700107 struct list_head sibling; /* sibling list item */
108 struct list_head children; /* children list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Stephen Hemminger87990462006-08-10 23:35:16 -0700110 union {
111 struct htb_class_leaf {
112 struct Qdisc *q;
113 int prio;
114 int aprio;
115 int quantum;
116 int deficit[TC_HTB_MAXDEPTH];
117 struct list_head drop_list;
118 } leaf;
119 struct htb_class_inner {
120 struct rb_root feed[TC_HTB_NUMPRIO]; /* feed trees */
121 struct rb_node *ptr[TC_HTB_NUMPRIO]; /* current class ptr */
122 /* When class changes from state 1->2 and disconnects from
123 parent's feed then we lost ptr value and start from the
124 first child again. Here we store classid of the
125 last valid ptr (used when ptr is NULL). */
126 u32 last_ptr_id[TC_HTB_NUMPRIO];
127 } inner;
128 } un;
129 struct rb_node node[TC_HTB_NUMPRIO]; /* node for self or feed tree */
130 struct rb_node pq_node; /* node for event queue */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700131 psched_time_t pq_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Stephen Hemminger87990462006-08-10 23:35:16 -0700133 int prio_activity; /* for which prios are we active */
134 enum htb_cmode cmode; /* current mode of the class */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Stephen Hemminger87990462006-08-10 23:35:16 -0700136 /* class attached filters */
137 struct tcf_proto *filter_list;
138 int filter_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Stephen Hemminger87990462006-08-10 23:35:16 -0700140 int warned; /* only one warning about non work conserving .. */
141
142 /* token bucket parameters */
143 struct qdisc_rate_table *rate; /* rate table of the class itself */
144 struct qdisc_rate_table *ceil; /* ceiling rate (limits borrows too) */
145 long buffer, cbuffer; /* token bucket depth/rate */
146 psched_tdiff_t mbuffer; /* max wait time */
147 long tokens, ctokens; /* current number of tokens */
148 psched_time_t t_c; /* checkpoint time */
Jarek Poplawski160d5e12006-12-08 00:26:56 -0800149
150 int prio; /* For parent to leaf return possible here */
151 int quantum; /* we do backup. Finally full replacement */
152 /* of un.leaf originals should be done. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
155/* TODO: maybe compute rate when size is too large .. or drop ? */
Stephen Hemminger87990462006-08-10 23:35:16 -0700156static inline long L2T(struct htb_class *cl, struct qdisc_rate_table *rate,
157 int size)
158{
159 int slot = size >> rate->rate.cell_log;
160 if (slot > 255) {
161 cl->xstats.giants++;
162 slot = 255;
163 }
164 return rate->data[slot];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Stephen Hemminger87990462006-08-10 23:35:16 -0700167struct htb_sched {
168 struct list_head root; /* root classes list */
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700169 struct hlist_head hash[HTB_HSIZE]; /* hashed by classid */
170 struct list_head drops[TC_HTB_NUMPRIO];/* active leaves (for drops) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Stephen Hemminger87990462006-08-10 23:35:16 -0700172 /* self list - roots of self generating tree */
173 struct rb_root row[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
174 int row_mask[TC_HTB_MAXDEPTH];
175 struct rb_node *ptr[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
176 u32 last_ptr_id[TC_HTB_MAXDEPTH][TC_HTB_NUMPRIO];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Stephen Hemminger87990462006-08-10 23:35:16 -0700178 /* self wait list - roots of wait PQs per row */
179 struct rb_root wait_pq[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Stephen Hemminger87990462006-08-10 23:35:16 -0700181 /* time of nearest event per level (row) */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700182 psched_time_t near_ev_cache[TC_HTB_MAXDEPTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Stephen Hemminger87990462006-08-10 23:35:16 -0700184 /* whether we hit non-work conserving class during this dequeue; we use */
185 int nwc_hit; /* this to disable mindelay complaint in dequeue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Stephen Hemminger87990462006-08-10 23:35:16 -0700187 int defcls; /* class where unclassified flows go to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Stephen Hemminger87990462006-08-10 23:35:16 -0700189 /* filters for qdisc itself */
190 struct tcf_proto *filter_list;
191 int filter_cnt;
192
193 int rate2quantum; /* quant = rate / rate2quantum */
194 psched_time_t now; /* cached dequeue time */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700195 struct qdisc_watchdog watchdog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196#ifdef HTB_RATECM
Stephen Hemminger87990462006-08-10 23:35:16 -0700197 struct timer_list rttim; /* rate computer timer */
198 int recmp_bucket; /* which hash bucket to recompute next */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Stephen Hemminger87990462006-08-10 23:35:16 -0700201 /* non shaped skbs; let them go directly thru */
202 struct sk_buff_head direct_queue;
203 int direct_qlen; /* max qlen of above */
204
205 long direct_pkts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
208/* compute hash of size HTB_HSIZE for given handle */
Stephen Hemminger87990462006-08-10 23:35:16 -0700209static inline int htb_hash(u32 h)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211#if HTB_HSIZE != 16
Stephen Hemminger87990462006-08-10 23:35:16 -0700212#error "Declare new hash for your HTB_HSIZE"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700214 h ^= h >> 8; /* stolen from cbq_hash */
215 h ^= h >> 4;
216 return h & 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
219/* find class in global hash table using given handle */
Stephen Hemminger87990462006-08-10 23:35:16 -0700220static inline struct htb_class *htb_find(u32 handle, struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700223 struct hlist_node *p;
224 struct htb_class *cl;
225
Stephen Hemminger87990462006-08-10 23:35:16 -0700226 if (TC_H_MAJ(handle) != sch->handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return NULL;
Stephen Hemminger87990462006-08-10 23:35:16 -0700228
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700229 hlist_for_each_entry(cl, p, q->hash + htb_hash(handle), hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (cl->classid == handle)
231 return cl;
232 }
233 return NULL;
234}
235
236/**
237 * htb_classify - classify a packet into class
238 *
239 * It returns NULL if the packet should be dropped or -1 if the packet
240 * should be passed directly thru. In all other cases leaf class is returned.
241 * We allow direct class selection by classid in priority. The we examine
242 * filters in qdisc and in inner nodes (if higher filter points to the inner
243 * node). If we end up with classid MAJOR:0 we enqueue the skb into special
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900244 * internal fifo (direct). These packets then go directly thru. If we still
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 * have no valid leaf we try to use MAJOR:default leaf. It still unsuccessfull
246 * then finish and return direct queue.
247 */
248#define HTB_DIRECT (struct htb_class*)-1
249static inline u32 htb_classid(struct htb_class *cl)
250{
251 return (cl && cl != HTB_DIRECT) ? cl->classid : TC_H_UNSPEC;
252}
253
Stephen Hemminger87990462006-08-10 23:35:16 -0700254static struct htb_class *htb_classify(struct sk_buff *skb, struct Qdisc *sch,
255 int *qerr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 struct htb_sched *q = qdisc_priv(sch);
258 struct htb_class *cl;
259 struct tcf_result res;
260 struct tcf_proto *tcf;
261 int result;
262
263 /* allow to select class by setting skb->priority to valid classid;
264 note that nfmark can be used too by attaching filter fw with no
265 rules in it */
266 if (skb->priority == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700267 return HTB_DIRECT; /* X:0 (direct flow) selected */
268 if ((cl = htb_find(skb->priority, sch)) != NULL && cl->level == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return cl;
270
Jamal Hadi Salim29f1df62006-01-08 22:35:55 -0800271 *qerr = NET_XMIT_BYPASS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 tcf = q->filter_list;
273 while (tcf && (result = tc_classify(skb, tcf, &res)) >= 0) {
274#ifdef CONFIG_NET_CLS_ACT
275 switch (result) {
276 case TC_ACT_QUEUED:
Stephen Hemminger87990462006-08-10 23:35:16 -0700277 case TC_ACT_STOLEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 *qerr = NET_XMIT_SUCCESS;
279 case TC_ACT_SHOT:
280 return NULL;
281 }
282#elif defined(CONFIG_NET_CLS_POLICE)
283 if (result == TC_POLICE_SHOT)
284 return HTB_DIRECT;
285#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700286 if ((cl = (void *)res.class) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (res.classid == sch->handle)
Stephen Hemminger87990462006-08-10 23:35:16 -0700288 return HTB_DIRECT; /* X:0 (direct flow) */
289 if ((cl = htb_find(res.classid, sch)) == NULL)
290 break; /* filter selected invalid classid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292 if (!cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700293 return cl; /* we hit leaf; return it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 /* we have got inner class; apply inner filter chain */
296 tcf = cl->filter_list;
297 }
298 /* classification failed; try to use default class */
Stephen Hemminger87990462006-08-10 23:35:16 -0700299 cl = htb_find(TC_H_MAKE(TC_H_MAJ(sch->handle), q->defcls), sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (!cl || cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -0700301 return HTB_DIRECT; /* bad default .. this is safe bet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return cl;
303}
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305/**
306 * htb_add_to_id_tree - adds class to the round robin list
307 *
308 * Routine adds class to the list (actually tree) sorted by classid.
309 * Make sure that class is not already on such list for given prio.
310 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700311static void htb_add_to_id_tree(struct rb_root *root,
312 struct htb_class *cl, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 struct rb_node **p = &root->rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700317 struct htb_class *c;
318 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 c = rb_entry(parent, struct htb_class, node[prio]);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (cl->classid > c->classid)
322 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700323 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 p = &parent->rb_left;
325 }
326 rb_link_node(&cl->node[prio], parent, p);
327 rb_insert_color(&cl->node[prio], root);
328}
329
330/**
331 * htb_add_to_wait_tree - adds class to the event queue with delay
332 *
333 * The class is added to priority event queue to indicate that class will
334 * change its mode in cl->pq_key microseconds. Make sure that class is not
335 * already in the queue.
336 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700337static void htb_add_to_wait_tree(struct htb_sched *q,
338 struct htb_class *cl, long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 struct rb_node **p = &q->wait_pq[cl->level].rb_node, *parent = NULL;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700341
Patrick McHardyfb983d42007-03-16 01:22:39 -0700342 cl->pq_key = q->now + delay;
343 if (cl->pq_key == q->now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 cl->pq_key++;
345
346 /* update the nearest event cache */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700347 if (q->near_ev_cache[cl->level] > cl->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 q->near_ev_cache[cl->level] = cl->pq_key;
Stephen Hemminger87990462006-08-10 23:35:16 -0700349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 while (*p) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700351 struct htb_class *c;
352 parent = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 c = rb_entry(parent, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700354 if (cl->pq_key >= c->pq_key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 p = &parent->rb_right;
Stephen Hemminger87990462006-08-10 23:35:16 -0700356 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 p = &parent->rb_left;
358 }
359 rb_link_node(&cl->pq_node, parent, p);
360 rb_insert_color(&cl->pq_node, &q->wait_pq[cl->level]);
361}
362
363/**
364 * htb_next_rb_node - finds next node in binary tree
365 *
366 * When we are past last key we return NULL.
367 * Average complexity is 2 steps per call.
368 */
Stephen Hemminger3696f622006-08-10 23:36:01 -0700369static inline void htb_next_rb_node(struct rb_node **n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 *n = rb_next(*n);
372}
373
374/**
375 * htb_add_class_to_row - add class to its row
376 *
377 * The class is added to row at priorities marked in mask.
378 * It does nothing if mask == 0.
379 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700380static inline void htb_add_class_to_row(struct htb_sched *q,
381 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 q->row_mask[cl->level] |= mask;
384 while (mask) {
385 int prio = ffz(~mask);
386 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700387 htb_add_to_id_tree(q->row[cl->level] + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389}
390
Stephen Hemminger3696f622006-08-10 23:36:01 -0700391/* If this triggers, it is a bug in this code, but it need not be fatal */
392static void htb_safe_rb_erase(struct rb_node *rb, struct rb_root *root)
393{
Ismail Donmez81771b32006-10-03 13:49:10 -0700394 if (RB_EMPTY_NODE(rb)) {
Stephen Hemminger3696f622006-08-10 23:36:01 -0700395 WARN_ON(1);
396 } else {
397 rb_erase(rb, root);
398 RB_CLEAR_NODE(rb);
399 }
400}
401
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403/**
404 * htb_remove_class_from_row - removes class from its row
405 *
406 * The class is removed from row at priorities marked in mask.
407 * It does nothing if mask == 0.
408 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700409static inline void htb_remove_class_from_row(struct htb_sched *q,
410 struct htb_class *cl, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 int m = 0;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 while (mask) {
415 int prio = ffz(~mask);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700418 if (q->ptr[cl->level][prio] == cl->node + prio)
419 htb_next_rb_node(q->ptr[cl->level] + prio);
Stephen Hemminger3696f622006-08-10 23:36:01 -0700420
421 htb_safe_rb_erase(cl->node + prio, q->row[cl->level] + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700422 if (!q->row[cl->level][prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 m |= 1 << prio;
424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 q->row_mask[cl->level] &= ~m;
426}
427
428/**
429 * htb_activate_prios - creates active classe's feed chain
430 *
431 * The class is connected to ancestors and/or appropriate rows
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900432 * for priorities it is participating on. cl->cmode must be new
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 * (activated) mode. It does nothing if cl->prio_activity == 0.
434 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700435static void htb_activate_prios(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700438 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700441 m = mask;
442 while (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 int prio = ffz(~m);
444 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (p->un.inner.feed[prio].rb_node)
447 /* parent already has its feed in use so that
448 reset bit in mask as parent is already ok */
449 mask &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700450
451 htb_add_to_id_tree(p->un.inner.feed + prio, cl, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 p->prio_activity |= mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700454 cl = p;
455 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458 if (cl->cmode == HTB_CAN_SEND && mask)
Stephen Hemminger87990462006-08-10 23:35:16 -0700459 htb_add_class_to_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462/**
463 * htb_deactivate_prios - remove class from feed chain
464 *
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900465 * cl->cmode must represent old mode (before deactivation). It does
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 * nothing if cl->prio_activity == 0. Class is removed from all feed
467 * chains and rows.
468 */
469static void htb_deactivate_prios(struct htb_sched *q, struct htb_class *cl)
470{
471 struct htb_class *p = cl->parent;
Stephen Hemminger87990462006-08-10 23:35:16 -0700472 long m, mask = cl->prio_activity;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 while (cl->cmode == HTB_MAY_BORROW && p && mask) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700475 m = mask;
476 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 while (m) {
478 int prio = ffz(~m);
479 m &= ~(1 << prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700480
481 if (p->un.inner.ptr[prio] == cl->node + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 /* we are removing child which is pointed to from
483 parent feed - forget the pointer but remember
484 classid */
485 p->un.inner.last_ptr_id[prio] = cl->classid;
486 p->un.inner.ptr[prio] = NULL;
487 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700488
Stephen Hemminger3696f622006-08-10 23:36:01 -0700489 htb_safe_rb_erase(cl->node + prio, p->un.inner.feed + prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700490
491 if (!p->un.inner.feed[prio].rb_node)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 mask |= 1 << prio;
493 }
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 p->prio_activity &= ~mask;
Stephen Hemminger87990462006-08-10 23:35:16 -0700496 cl = p;
497 p = cl->parent;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700500 if (cl->cmode == HTB_CAN_SEND && mask)
501 htb_remove_class_from_row(q, cl, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700504#if HTB_HYSTERESIS
505static inline long htb_lowater(const struct htb_class *cl)
506{
507 return cl->cmode != HTB_CANT_SEND ? -cl->cbuffer : 0;
508}
509static inline long htb_hiwater(const struct htb_class *cl)
510{
511 return cl->cmode == HTB_CAN_SEND ? -cl->buffer : 0;
512}
513#else
514#define htb_lowater(cl) (0)
515#define htb_hiwater(cl) (0)
516#endif
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518/**
519 * htb_class_mode - computes and returns current class mode
520 *
521 * It computes cl's mode at time cl->t_c+diff and returns it. If mode
522 * is not HTB_CAN_SEND then cl->pq_key is updated to time difference
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900523 * from now to time when cl will change its state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 * Also it is worth to note that class mode doesn't change simply
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900525 * at cl->{c,}tokens == 0 but there can rather be hysteresis of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 * 0 .. -cl->{c,}buffer range. It is meant to limit number of
527 * mode transitions per time unit. The speed gain is about 1/6.
528 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700529static inline enum htb_cmode
530htb_class_mode(struct htb_class *cl, long *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Stephen Hemminger87990462006-08-10 23:35:16 -0700532 long toks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Stephen Hemminger87990462006-08-10 23:35:16 -0700534 if ((toks = (cl->ctokens + *diff)) < htb_lowater(cl)) {
535 *diff = -toks;
536 return HTB_CANT_SEND;
537 }
Stephen Hemminger18a63e82006-08-10 23:34:02 -0700538
Stephen Hemminger87990462006-08-10 23:35:16 -0700539 if ((toks = (cl->tokens + *diff)) >= htb_hiwater(cl))
540 return HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Stephen Hemminger87990462006-08-10 23:35:16 -0700542 *diff = -toks;
543 return HTB_MAY_BORROW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546/**
547 * htb_change_class_mode - changes classe's mode
548 *
549 * This should be the only way how to change classe's mode under normal
550 * cirsumstances. Routine will update feed lists linkage, change mode
551 * and add class to the wait event queue if appropriate. New mode should
552 * be different from old one and cl->pq_key has to be valid if changing
553 * to mode other than HTB_CAN_SEND (see htb_add_to_wait_tree).
554 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700555static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556htb_change_class_mode(struct htb_sched *q, struct htb_class *cl, long *diff)
Stephen Hemminger87990462006-08-10 23:35:16 -0700557{
558 enum htb_cmode new_mode = htb_class_mode(cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 if (new_mode == cl->cmode)
Stephen Hemminger87990462006-08-10 23:35:16 -0700561 return;
562
563 if (cl->prio_activity) { /* not necessary: speed optimization */
564 if (cl->cmode != HTB_CANT_SEND)
565 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 cl->cmode = new_mode;
Stephen Hemminger87990462006-08-10 23:35:16 -0700567 if (new_mode != HTB_CANT_SEND)
568 htb_activate_prios(q, cl);
569 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 cl->cmode = new_mode;
571}
572
573/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900574 * htb_activate - inserts leaf cl into appropriate active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 *
576 * Routine learns (new) priority of leaf and activates feed chain
577 * for the prio. It can be called on already active leaf safely.
578 * It also adds leaf into droplist.
579 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700580static inline void htb_activate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 BUG_TRAP(!cl->level && cl->un.leaf.q && cl->un.leaf.q->q.qlen);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (!cl->prio_activity) {
585 cl->prio_activity = 1 << (cl->un.leaf.aprio = cl->un.leaf.prio);
Stephen Hemminger87990462006-08-10 23:35:16 -0700586 htb_activate_prios(q, cl);
587 list_add_tail(&cl->un.leaf.drop_list,
588 q->drops + cl->un.leaf.aprio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
590}
591
592/**
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900593 * htb_deactivate - remove leaf cl from active feeds
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 *
595 * Make sure that leaf is active. In the other words it can't be called
596 * with non-active leaf. It also removes class from the drop list.
597 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700598static inline void htb_deactivate(struct htb_sched *q, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 BUG_TRAP(cl->prio_activity);
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700601
Stephen Hemminger87990462006-08-10 23:35:16 -0700602 htb_deactivate_prios(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 cl->prio_activity = 0;
604 list_del_init(&cl->un.leaf.drop_list);
605}
606
607static int htb_enqueue(struct sk_buff *skb, struct Qdisc *sch)
608{
Stephen Hemminger87990462006-08-10 23:35:16 -0700609 int ret;
610 struct htb_sched *q = qdisc_priv(sch);
611 struct htb_class *cl = htb_classify(skb, sch, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Stephen Hemminger87990462006-08-10 23:35:16 -0700613 if (cl == HTB_DIRECT) {
614 /* enqueue to helper queue */
615 if (q->direct_queue.qlen < q->direct_qlen) {
616 __skb_queue_tail(&q->direct_queue, skb);
617 q->direct_pkts++;
618 } else {
619 kfree_skb(skb);
620 sch->qstats.drops++;
621 return NET_XMIT_DROP;
622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623#ifdef CONFIG_NET_CLS_ACT
Stephen Hemminger87990462006-08-10 23:35:16 -0700624 } else if (!cl) {
625 if (ret == NET_XMIT_BYPASS)
626 sch->qstats.drops++;
627 kfree_skb(skb);
628 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629#endif
Stephen Hemminger87990462006-08-10 23:35:16 -0700630 } else if (cl->un.leaf.q->enqueue(skb, cl->un.leaf.q) !=
631 NET_XMIT_SUCCESS) {
632 sch->qstats.drops++;
633 cl->qstats.drops++;
634 return NET_XMIT_DROP;
635 } else {
636 cl->bstats.packets++;
637 cl->bstats.bytes += skb->len;
638 htb_activate(q, cl);
639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Stephen Hemminger87990462006-08-10 23:35:16 -0700641 sch->q.qlen++;
642 sch->bstats.packets++;
643 sch->bstats.bytes += skb->len;
644 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647/* TODO: requeuing packet charges it to policers again !! */
648static int htb_requeue(struct sk_buff *skb, struct Qdisc *sch)
649{
Stephen Hemminger87990462006-08-10 23:35:16 -0700650 struct htb_sched *q = qdisc_priv(sch);
651 int ret = NET_XMIT_SUCCESS;
652 struct htb_class *cl = htb_classify(skb, sch, &ret);
653 struct sk_buff *tskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Stephen Hemminger87990462006-08-10 23:35:16 -0700655 if (cl == HTB_DIRECT || !cl) {
656 /* enqueue to helper queue */
657 if (q->direct_queue.qlen < q->direct_qlen && cl) {
658 __skb_queue_head(&q->direct_queue, skb);
659 } else {
660 __skb_queue_head(&q->direct_queue, skb);
661 tskb = __skb_dequeue_tail(&q->direct_queue);
662 kfree_skb(tskb);
663 sch->qstats.drops++;
664 return NET_XMIT_CN;
665 }
666 } else if (cl->un.leaf.q->ops->requeue(skb, cl->un.leaf.q) !=
667 NET_XMIT_SUCCESS) {
668 sch->qstats.drops++;
669 cl->qstats.drops++;
670 return NET_XMIT_DROP;
671 } else
672 htb_activate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Stephen Hemminger87990462006-08-10 23:35:16 -0700674 sch->q.qlen++;
675 sch->qstats.requeues++;
676 return NET_XMIT_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679#ifdef HTB_RATECM
680#define RT_GEN(D,R) R+=D-(R/HTB_EWMAC);D=0
681static void htb_rate_timer(unsigned long arg)
682{
Stephen Hemminger87990462006-08-10 23:35:16 -0700683 struct Qdisc *sch = (struct Qdisc *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700685 struct hlist_node *p;
686 struct htb_class *cl;
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 /* lock queue so that we can muck with it */
Stephen Hemminger9ac961e2006-08-10 23:33:16 -0700690 spin_lock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 q->rttim.expires = jiffies + HZ;
693 add_timer(&q->rttim);
694
695 /* scan and recompute one bucket at time */
Stephen Hemminger87990462006-08-10 23:35:16 -0700696 if (++q->recmp_bucket >= HTB_HSIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 q->recmp_bucket = 0;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700698
Stephen Hemminger0cef2962006-08-10 23:35:38 -0700699 hlist_for_each_entry(cl,p, q->hash + q->recmp_bucket, hlist) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700700 RT_GEN(cl->sum_bytes, cl->rate_bytes);
701 RT_GEN(cl->sum_packets, cl->rate_packets);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Stephen Hemminger9ac961e2006-08-10 23:33:16 -0700703 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705#endif
706
707/**
708 * htb_charge_class - charges amount "bytes" to leaf and ancestors
709 *
710 * Routine assumes that packet "bytes" long was dequeued from leaf cl
711 * borrowing from "level". It accounts bytes to ceil leaky bucket for
712 * leaf and all ancestors and to rate bucket for ancestors at levels
713 * "level" and higher. It also handles possible change of mode resulting
714 * from the update. Note that mode can also increase here (MAY_BORROW to
715 * CAN_SEND) because we can use more precise clock that event queue here.
716 * In such case we remove class from event queue first.
717 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700718static void htb_charge_class(struct htb_sched *q, struct htb_class *cl,
719 int level, int bytes)
720{
721 long toks, diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 enum htb_cmode old_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724#define HTB_ACCNT(T,B,R) toks = diff + cl->T; \
725 if (toks > cl->B) toks = cl->B; \
726 toks -= L2T(cl, cl->R, bytes); \
727 if (toks <= -cl->mbuffer) toks = 1-cl->mbuffer; \
728 cl->T = toks
729
730 while (cl) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700731 diff = PSCHED_TDIFF_SAFE(q->now, cl->t_c, (u32) cl->mbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (cl->level >= level) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700733 if (cl->level == level)
734 cl->xstats.lends++;
735 HTB_ACCNT(tokens, buffer, rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 } else {
737 cl->xstats.borrows++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700738 cl->tokens += diff; /* we moved t_c; update tokens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700740 HTB_ACCNT(ctokens, cbuffer, ceil);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 cl->t_c = q->now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Stephen Hemminger87990462006-08-10 23:35:16 -0700743 old_mode = cl->cmode;
744 diff = 0;
745 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (old_mode != cl->cmode) {
747 if (old_mode != HTB_CAN_SEND)
Stephen Hemminger3696f622006-08-10 23:36:01 -0700748 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700750 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752#ifdef HTB_RATECM
753 /* update rate counters */
Stephen Hemminger87990462006-08-10 23:35:16 -0700754 cl->sum_bytes += bytes;
755 cl->sum_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756#endif
757
758 /* update byte stats except for leaves which are already updated */
759 if (cl->level) {
760 cl->bstats.bytes += bytes;
761 cl->bstats.packets++;
762 }
763 cl = cl->parent;
764 }
765}
766
767/**
768 * htb_do_events - make mode changes to classes at the level
769 *
Patrick McHardyfb983d42007-03-16 01:22:39 -0700770 * Scans event queue for pending events and applies them. Returns time of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 * next pending event (0 for no event in pq).
Patrick McHardyfb983d42007-03-16 01:22:39 -0700772 * Note: Applied are events whose have cl->pq_key <= q->now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 */
Patrick McHardyfb983d42007-03-16 01:22:39 -0700774static psched_time_t htb_do_events(struct htb_sched *q, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 int i;
Stephen Hemminger3bf72952006-08-10 23:31:08 -0700777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 for (i = 0; i < 500; i++) {
779 struct htb_class *cl;
780 long diff;
Akinbou Mita30bdbe32006-10-12 01:52:05 -0700781 struct rb_node *p = rb_first(&q->wait_pq[level]);
782
Stephen Hemminger87990462006-08-10 23:35:16 -0700783 if (!p)
784 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 cl = rb_entry(p, struct htb_class, pq_node);
Patrick McHardyfb983d42007-03-16 01:22:39 -0700787 if (cl->pq_key > q->now)
788 return cl->pq_key;
789
Stephen Hemminger3696f622006-08-10 23:36:01 -0700790 htb_safe_rb_erase(p, q->wait_pq + level);
Stephen Hemminger87990462006-08-10 23:35:16 -0700791 diff = PSCHED_TDIFF_SAFE(q->now, cl->t_c, (u32) cl->mbuffer);
792 htb_change_class_mode(q, cl, &diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger87990462006-08-10 23:35:16 -0700794 htb_add_to_wait_tree(q, cl, diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796 if (net_ratelimit())
797 printk(KERN_WARNING "htb: too many events !\n");
Patrick McHardyfb983d42007-03-16 01:22:39 -0700798 return q->now + PSCHED_TICKS_PER_SEC / 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
801/* Returns class->node+prio from id-tree where classe's id is >= id. NULL
802 is no such one exists. */
Stephen Hemminger87990462006-08-10 23:35:16 -0700803static struct rb_node *htb_id_find_next_upper(int prio, struct rb_node *n,
804 u32 id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
806 struct rb_node *r = NULL;
807 while (n) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700808 struct htb_class *cl =
809 rb_entry(n, struct htb_class, node[prio]);
810 if (id == cl->classid)
811 return n;
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (id > cl->classid) {
814 n = n->rb_right;
815 } else {
816 r = n;
817 n = n->rb_left;
818 }
819 }
820 return r;
821}
822
823/**
824 * htb_lookup_leaf - returns next leaf class in DRR order
825 *
826 * Find leaf where current feed pointers points to.
827 */
Stephen Hemminger87990462006-08-10 23:35:16 -0700828static struct htb_class *htb_lookup_leaf(struct rb_root *tree, int prio,
829 struct rb_node **pptr, u32 * pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
831 int i;
832 struct {
833 struct rb_node *root;
834 struct rb_node **pptr;
835 u32 *pid;
Stephen Hemminger87990462006-08-10 23:35:16 -0700836 } stk[TC_HTB_MAXDEPTH], *sp = stk;
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 BUG_TRAP(tree->rb_node);
839 sp->root = tree->rb_node;
840 sp->pptr = pptr;
841 sp->pid = pid;
842
843 for (i = 0; i < 65535; i++) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700844 if (!*sp->pptr && *sp->pid) {
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900845 /* ptr was invalidated but id is valid - try to recover
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 the original or next ptr */
Stephen Hemminger87990462006-08-10 23:35:16 -0700847 *sp->pptr =
848 htb_id_find_next_upper(prio, sp->root, *sp->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700850 *sp->pid = 0; /* ptr is valid now so that remove this hint as it
851 can become out of date quickly */
852 if (!*sp->pptr) { /* we are at right end; rewind & go up */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 *sp->pptr = sp->root;
Stephen Hemminger87990462006-08-10 23:35:16 -0700854 while ((*sp->pptr)->rb_left)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 *sp->pptr = (*sp->pptr)->rb_left;
856 if (sp > stk) {
857 sp--;
Stephen Hemminger87990462006-08-10 23:35:16 -0700858 BUG_TRAP(*sp->pptr);
859 if (!*sp->pptr)
860 return NULL;
861 htb_next_rb_node(sp->pptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863 } else {
864 struct htb_class *cl;
Stephen Hemminger87990462006-08-10 23:35:16 -0700865 cl = rb_entry(*sp->pptr, struct htb_class, node[prio]);
866 if (!cl->level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return cl;
868 (++sp)->root = cl->un.inner.feed[prio].rb_node;
Stephen Hemminger87990462006-08-10 23:35:16 -0700869 sp->pptr = cl->un.inner.ptr + prio;
870 sp->pid = cl->un.inner.last_ptr_id + prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872 }
873 BUG_TRAP(0);
874 return NULL;
875}
876
877/* dequeues packet at given priority and level; call only if
878 you are sure that there is active class at prio/level */
Stephen Hemminger87990462006-08-10 23:35:16 -0700879static struct sk_buff *htb_dequeue_tree(struct htb_sched *q, int prio,
880 int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
882 struct sk_buff *skb = NULL;
Stephen Hemminger87990462006-08-10 23:35:16 -0700883 struct htb_class *cl, *start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 /* look initial class up in the row */
Stephen Hemminger87990462006-08-10 23:35:16 -0700885 start = cl = htb_lookup_leaf(q->row[level] + prio, prio,
886 q->ptr[level] + prio,
887 q->last_ptr_id[level] + prio);
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 do {
890next:
Stephen Hemminger87990462006-08-10 23:35:16 -0700891 BUG_TRAP(cl);
892 if (!cl)
893 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 /* class can be empty - it is unlikely but can be true if leaf
896 qdisc drops packets in enqueue routine or if someone used
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +0900897 graft operation on the leaf since last dequeue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 simply deactivate and skip such class */
899 if (unlikely(cl->un.leaf.q->q.qlen == 0)) {
900 struct htb_class *next;
Stephen Hemminger87990462006-08-10 23:35:16 -0700901 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 /* row/level might become empty */
904 if ((q->row_mask[level] & (1 << prio)) == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -0700905 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Stephen Hemminger87990462006-08-10 23:35:16 -0700907 next = htb_lookup_leaf(q->row[level] + prio,
908 prio, q->ptr[level] + prio,
909 q->last_ptr_id[level] + prio);
910
911 if (cl == start) /* fix start if we just deleted it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 start = next;
913 cl = next;
914 goto next;
915 }
Stephen Hemminger87990462006-08-10 23:35:16 -0700916
917 skb = cl->un.leaf.q->dequeue(cl->un.leaf.q);
918 if (likely(skb != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 break;
920 if (!cl->warned) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700921 printk(KERN_WARNING
922 "htb: class %X isn't work conserving ?!\n",
923 cl->classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 cl->warned = 1;
925 }
926 q->nwc_hit++;
Stephen Hemminger87990462006-08-10 23:35:16 -0700927 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
928 ptr[0]) + prio);
929 cl = htb_lookup_leaf(q->row[level] + prio, prio,
930 q->ptr[level] + prio,
931 q->last_ptr_id[level] + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 } while (cl != start);
934
935 if (likely(skb != NULL)) {
936 if ((cl->un.leaf.deficit[level] -= skb->len) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 cl->un.leaf.deficit[level] += cl->un.leaf.quantum;
Stephen Hemminger87990462006-08-10 23:35:16 -0700938 htb_next_rb_node((level ? cl->parent->un.inner.ptr : q->
939 ptr[0]) + prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 }
941 /* this used to be after charge_class but this constelation
942 gives us slightly better performance */
943 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -0700944 htb_deactivate(q, cl);
945 htb_charge_class(q, cl, level, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
947 return skb;
948}
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950static struct sk_buff *htb_dequeue(struct Qdisc *sch)
951{
952 struct sk_buff *skb = NULL;
953 struct htb_sched *q = qdisc_priv(sch);
954 int level;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700955 psched_time_t next_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 /* try to dequeue direct packets as high prio (!) to minimize cpu work */
Stephen Hemminger87990462006-08-10 23:35:16 -0700958 skb = __skb_dequeue(&q->direct_queue);
959 if (skb != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 sch->flags &= ~TCQ_F_THROTTLED;
961 sch->q.qlen--;
962 return skb;
963 }
964
Stephen Hemminger87990462006-08-10 23:35:16 -0700965 if (!sch->q.qlen)
966 goto fin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 PSCHED_GET_TIME(q->now);
968
Patrick McHardyfb983d42007-03-16 01:22:39 -0700969 next_event = q->now + 5 * PSCHED_TICKS_PER_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 q->nwc_hit = 0;
971 for (level = 0; level < TC_HTB_MAXDEPTH; level++) {
972 /* common case optimization - skip event handler quickly */
973 int m;
Patrick McHardyfb983d42007-03-16 01:22:39 -0700974 psched_time_t event;
Stephen Hemminger87990462006-08-10 23:35:16 -0700975
Patrick McHardyfb983d42007-03-16 01:22:39 -0700976 if (q->now >= q->near_ev_cache[level]) {
977 event = htb_do_events(q, level);
978 q->near_ev_cache[level] = event ? event :
979 PSCHED_TICKS_PER_SEC;
980 } else
981 event = q->near_ev_cache[level];
982
983 if (event && next_event > event)
984 next_event = event;
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 m = ~q->row_mask[level];
987 while (m != (int)(-1)) {
Stephen Hemminger87990462006-08-10 23:35:16 -0700988 int prio = ffz(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 m |= 1 << prio;
Stephen Hemminger87990462006-08-10 23:35:16 -0700990 skb = htb_dequeue_tree(q, prio, level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (likely(skb != NULL)) {
992 sch->q.qlen--;
993 sch->flags &= ~TCQ_F_THROTTLED;
994 goto fin;
995 }
996 }
997 }
Patrick McHardyfb983d42007-03-16 01:22:39 -0700998 sch->qstats.overlimits++;
999 qdisc_watchdog_schedule(&q->watchdog, next_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000fin:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return skb;
1002}
1003
1004/* try to drop from each class (by prio) until one succeed */
Stephen Hemminger87990462006-08-10 23:35:16 -07001005static unsigned int htb_drop(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
1007 struct htb_sched *q = qdisc_priv(sch);
1008 int prio;
1009
1010 for (prio = TC_HTB_NUMPRIO - 1; prio >= 0; prio--) {
1011 struct list_head *p;
Stephen Hemminger87990462006-08-10 23:35:16 -07001012 list_for_each(p, q->drops + prio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 struct htb_class *cl = list_entry(p, struct htb_class,
1014 un.leaf.drop_list);
1015 unsigned int len;
Stephen Hemminger87990462006-08-10 23:35:16 -07001016 if (cl->un.leaf.q->ops->drop &&
1017 (len = cl->un.leaf.q->ops->drop(cl->un.leaf.q))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 sch->q.qlen--;
1019 if (!cl->un.leaf.q->q.qlen)
Stephen Hemminger87990462006-08-10 23:35:16 -07001020 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return len;
1022 }
1023 }
1024 }
1025 return 0;
1026}
1027
1028/* reset all classes */
1029/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -07001030static void htb_reset(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
1032 struct htb_sched *q = qdisc_priv(sch);
1033 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 for (i = 0; i < HTB_HSIZE; i++) {
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001036 struct hlist_node *p;
1037 struct htb_class *cl;
1038
1039 hlist_for_each_entry(cl, p, q->hash + i, hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (cl->level)
Stephen Hemminger87990462006-08-10 23:35:16 -07001041 memset(&cl->un.inner, 0, sizeof(cl->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 else {
Stephen Hemminger87990462006-08-10 23:35:16 -07001043 if (cl->un.leaf.q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 qdisc_reset(cl->un.leaf.q);
1045 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
1046 }
1047 cl->prio_activity = 0;
1048 cl->cmode = HTB_CAN_SEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 }
1051 }
Patrick McHardyfb983d42007-03-16 01:22:39 -07001052 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 __skb_queue_purge(&q->direct_queue);
1054 sch->q.qlen = 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001055 memset(q->row, 0, sizeof(q->row));
1056 memset(q->row_mask, 0, sizeof(q->row_mask));
1057 memset(q->wait_pq, 0, sizeof(q->wait_pq));
1058 memset(q->ptr, 0, sizeof(q->ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -07001060 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061}
1062
1063static int htb_init(struct Qdisc *sch, struct rtattr *opt)
1064{
1065 struct htb_sched *q = qdisc_priv(sch);
1066 struct rtattr *tb[TCA_HTB_INIT];
1067 struct tc_htb_glob *gopt;
1068 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (!opt || rtattr_parse_nested(tb, TCA_HTB_INIT, opt) ||
Stephen Hemminger87990462006-08-10 23:35:16 -07001070 tb[TCA_HTB_INIT - 1] == NULL ||
1071 RTA_PAYLOAD(tb[TCA_HTB_INIT - 1]) < sizeof(*gopt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 printk(KERN_ERR "HTB: hey probably you have bad tc tool ?\n");
1073 return -EINVAL;
1074 }
Stephen Hemminger87990462006-08-10 23:35:16 -07001075 gopt = RTA_DATA(tb[TCA_HTB_INIT - 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (gopt->version != HTB_VER >> 16) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001077 printk(KERN_ERR
1078 "HTB: need tc/htb version %d (minor is %d), you have %d\n",
1079 HTB_VER >> 16, HTB_VER & 0xffff, gopt->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return -EINVAL;
1081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 INIT_LIST_HEAD(&q->root);
1084 for (i = 0; i < HTB_HSIZE; i++)
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001085 INIT_HLIST_HEAD(q->hash + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 for (i = 0; i < TC_HTB_NUMPRIO; i++)
Stephen Hemminger87990462006-08-10 23:35:16 -07001087 INIT_LIST_HEAD(q->drops + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Patrick McHardyfb983d42007-03-16 01:22:39 -07001089 qdisc_watchdog_init(&q->watchdog, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 skb_queue_head_init(&q->direct_queue);
1091
1092 q->direct_qlen = sch->dev->tx_queue_len;
Stephen Hemminger87990462006-08-10 23:35:16 -07001093 if (q->direct_qlen < 2) /* some devices have zero tx_queue_len */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 q->direct_qlen = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096#ifdef HTB_RATECM
1097 init_timer(&q->rttim);
1098 q->rttim.function = htb_rate_timer;
1099 q->rttim.data = (unsigned long)sch;
1100 q->rttim.expires = jiffies + HZ;
1101 add_timer(&q->rttim);
1102#endif
1103 if ((q->rate2quantum = gopt->rate2quantum) < 1)
1104 q->rate2quantum = 1;
1105 q->defcls = gopt->defcls;
1106
1107 return 0;
1108}
1109
1110static int htb_dump(struct Qdisc *sch, struct sk_buff *skb)
1111{
1112 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001113 unsigned char *b = skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 struct rtattr *rta;
1115 struct tc_htb_glob gopt;
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001116 spin_lock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 gopt.direct_pkts = q->direct_pkts;
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 gopt.version = HTB_VER;
1120 gopt.rate2quantum = q->rate2quantum;
1121 gopt.defcls = q->defcls;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001122 gopt.debug = 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001123 rta = (struct rtattr *)b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
1125 RTA_PUT(skb, TCA_HTB_INIT, sizeof(gopt), &gopt);
1126 rta->rta_len = skb->tail - b;
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001127 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return skb->len;
1129rtattr_failure:
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001130 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 skb_trim(skb, skb->tail - skb->data);
1132 return -1;
1133}
1134
1135static int htb_dump_class(struct Qdisc *sch, unsigned long arg,
Stephen Hemminger87990462006-08-10 23:35:16 -07001136 struct sk_buff *skb, struct tcmsg *tcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Stephen Hemminger87990462006-08-10 23:35:16 -07001138 struct htb_class *cl = (struct htb_class *)arg;
1139 unsigned char *b = skb->tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 struct rtattr *rta;
1141 struct tc_htb_opt opt;
1142
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001143 spin_lock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 tcm->tcm_parent = cl->parent ? cl->parent->classid : TC_H_ROOT;
1145 tcm->tcm_handle = cl->classid;
1146 if (!cl->level && cl->un.leaf.q)
1147 tcm->tcm_info = cl->un.leaf.q->handle;
1148
Stephen Hemminger87990462006-08-10 23:35:16 -07001149 rta = (struct rtattr *)b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 RTA_PUT(skb, TCA_OPTIONS, 0, NULL);
1151
Stephen Hemminger87990462006-08-10 23:35:16 -07001152 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Stephen Hemminger87990462006-08-10 23:35:16 -07001154 opt.rate = cl->rate->rate;
1155 opt.buffer = cl->buffer;
1156 opt.ceil = cl->ceil->rate;
1157 opt.cbuffer = cl->cbuffer;
1158 opt.quantum = cl->un.leaf.quantum;
1159 opt.prio = cl->un.leaf.prio;
1160 opt.level = cl->level;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 RTA_PUT(skb, TCA_HTB_PARMS, sizeof(opt), &opt);
1162 rta->rta_len = skb->tail - b;
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001163 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 return skb->len;
1165rtattr_failure:
Stephen Hemminger9ac961e2006-08-10 23:33:16 -07001166 spin_unlock_bh(&sch->dev->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 skb_trim(skb, b - skb->data);
1168 return -1;
1169}
1170
1171static int
Stephen Hemminger87990462006-08-10 23:35:16 -07001172htb_dump_class_stats(struct Qdisc *sch, unsigned long arg, struct gnet_dump *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
Stephen Hemminger87990462006-08-10 23:35:16 -07001174 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176#ifdef HTB_RATECM
Stephen Hemminger87990462006-08-10 23:35:16 -07001177 cl->rate_est.bps = cl->rate_bytes / (HTB_EWMAC * HTB_HSIZE);
1178 cl->rate_est.pps = cl->rate_packets / (HTB_EWMAC * HTB_HSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179#endif
1180
1181 if (!cl->level && cl->un.leaf.q)
1182 cl->qstats.qlen = cl->un.leaf.q->q.qlen;
1183 cl->xstats.tokens = cl->tokens;
1184 cl->xstats.ctokens = cl->ctokens;
1185
1186 if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
1187 gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 ||
1188 gnet_stats_copy_queue(d, &cl->qstats) < 0)
1189 return -1;
1190
1191 return gnet_stats_copy_app(d, &cl->xstats, sizeof(cl->xstats));
1192}
1193
1194static int htb_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new,
Stephen Hemminger87990462006-08-10 23:35:16 -07001195 struct Qdisc **old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Stephen Hemminger87990462006-08-10 23:35:16 -07001197 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 if (cl && !cl->level) {
Patrick McHardy9f9afec2006-11-29 17:35:18 -08001200 if (new == NULL &&
1201 (new = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops,
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001202 cl->classid))
Stephen Hemminger87990462006-08-10 23:35:16 -07001203 == NULL)
1204 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 sch_tree_lock(sch);
1206 if ((*old = xchg(&cl->un.leaf.q, new)) != NULL) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001207 qdisc_tree_decrease_qlen(*old, (*old)->q.qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 qdisc_reset(*old);
1209 }
1210 sch_tree_unlock(sch);
1211 return 0;
1212 }
1213 return -ENOENT;
1214}
1215
Stephen Hemminger87990462006-08-10 23:35:16 -07001216static struct Qdisc *htb_leaf(struct Qdisc *sch, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
Stephen Hemminger87990462006-08-10 23:35:16 -07001218 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return (cl && !cl->level) ? cl->un.leaf.q : NULL;
1220}
1221
Patrick McHardy256d61b2006-11-29 17:37:05 -08001222static void htb_qlen_notify(struct Qdisc *sch, unsigned long arg)
1223{
1224 struct htb_class *cl = (struct htb_class *)arg;
1225
1226 if (cl->un.leaf.q->q.qlen == 0)
1227 htb_deactivate(qdisc_priv(sch), cl);
1228}
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230static unsigned long htb_get(struct Qdisc *sch, u32 classid)
1231{
Stephen Hemminger87990462006-08-10 23:35:16 -07001232 struct htb_class *cl = htb_find(classid, sch);
1233 if (cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 cl->refcnt++;
1235 return (unsigned long)cl;
1236}
1237
1238static void htb_destroy_filters(struct tcf_proto **fl)
1239{
1240 struct tcf_proto *tp;
1241
1242 while ((tp = *fl) != NULL) {
1243 *fl = tp->next;
1244 tcf_destroy(tp);
1245 }
1246}
1247
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001248static inline int htb_parent_last_child(struct htb_class *cl)
1249{
1250 if (!cl->parent)
1251 /* the root class */
1252 return 0;
1253
1254 if (!(cl->parent->children.next == &cl->sibling &&
1255 cl->parent->children.prev == &cl->sibling))
1256 /* not the last child */
1257 return 0;
1258
1259 return 1;
1260}
1261
1262static void htb_parent_to_leaf(struct htb_class *cl, struct Qdisc *new_q)
1263{
1264 struct htb_class *parent = cl->parent;
1265
1266 BUG_TRAP(!cl->level && cl->un.leaf.q && !cl->prio_activity);
1267
1268 parent->level = 0;
1269 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
1270 INIT_LIST_HEAD(&parent->un.leaf.drop_list);
1271 parent->un.leaf.q = new_q ? new_q : &noop_qdisc;
1272 parent->un.leaf.quantum = parent->quantum;
1273 parent->un.leaf.prio = parent->prio;
1274 parent->tokens = parent->buffer;
1275 parent->ctokens = parent->cbuffer;
1276 PSCHED_GET_TIME(parent->t_c);
1277 parent->cmode = HTB_CAN_SEND;
1278}
1279
Stephen Hemminger87990462006-08-10 23:35:16 -07001280static void htb_destroy_class(struct Qdisc *sch, struct htb_class *cl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
1282 struct htb_sched *q = qdisc_priv(sch);
Patrick McHardy814a175e2006-11-29 17:34:50 -08001283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 if (!cl->level) {
1285 BUG_TRAP(cl->un.leaf.q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 qdisc_destroy(cl->un.leaf.q);
1287 }
1288 qdisc_put_rtab(cl->rate);
1289 qdisc_put_rtab(cl->ceil);
Stephen Hemminger87990462006-08-10 23:35:16 -07001290
1291 htb_destroy_filters(&cl->filter_list);
1292
1293 while (!list_empty(&cl->children))
1294 htb_destroy_class(sch, list_entry(cl->children.next,
1295 struct htb_class, sibling));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 /* note: this delete may happen twice (see htb_delete) */
Stephen Hemmingerda33e3e2006-11-07 14:54:46 -08001298 hlist_del_init(&cl->hlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 list_del(&cl->sibling);
Stephen Hemminger87990462006-08-10 23:35:16 -07001300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if (cl->prio_activity)
Stephen Hemminger87990462006-08-10 23:35:16 -07001302 htb_deactivate(q, cl);
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if (cl->cmode != HTB_CAN_SEND)
Stephen Hemminger3696f622006-08-10 23:36:01 -07001305 htb_safe_rb_erase(&cl->pq_node, q->wait_pq + cl->level);
Stephen Hemminger87990462006-08-10 23:35:16 -07001306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 kfree(cl);
1308}
1309
1310/* always caled under BH & queue lock */
Stephen Hemminger87990462006-08-10 23:35:16 -07001311static void htb_destroy(struct Qdisc *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
1313 struct htb_sched *q = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Patrick McHardyfb983d42007-03-16 01:22:39 -07001315 qdisc_watchdog_cancel(&q->watchdog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316#ifdef HTB_RATECM
Stephen Hemminger87990462006-08-10 23:35:16 -07001317 del_timer_sync(&q->rttim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318#endif
1319 /* This line used to be after htb_destroy_class call below
YOSHIFUJI Hideaki10297b92007-02-09 23:25:16 +09001320 and surprisingly it worked in 2.4. But it must precede it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 because filter need its target class alive to be able to call
1322 unbind_filter on it (without Oops). */
1323 htb_destroy_filters(&q->filter_list);
Stephen Hemminger87990462006-08-10 23:35:16 -07001324
1325 while (!list_empty(&q->root))
1326 htb_destroy_class(sch, list_entry(q->root.next,
1327 struct htb_class, sibling));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 __skb_queue_purge(&q->direct_queue);
1330}
1331
1332static int htb_delete(struct Qdisc *sch, unsigned long arg)
1333{
1334 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001335 struct htb_class *cl = (struct htb_class *)arg;
Patrick McHardy256d61b2006-11-29 17:37:05 -08001336 unsigned int qlen;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001337 struct Qdisc *new_q = NULL;
1338 int last_child = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 // TODO: why don't allow to delete subtree ? references ? does
1341 // tc subsys quarantee us that in htb_destroy it holds no class
1342 // refs so that we can remove children safely there ?
1343 if (!list_empty(&cl->children) || cl->filter_cnt)
1344 return -EBUSY;
Stephen Hemminger87990462006-08-10 23:35:16 -07001345
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001346 if (!cl->level && htb_parent_last_child(cl)) {
1347 new_q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops,
1348 cl->parent->classid);
1349 last_child = 1;
1350 }
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 sch_tree_lock(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001353
Patrick McHardy814a175e2006-11-29 17:34:50 -08001354 if (!cl->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001355 qlen = cl->un.leaf.q->q.qlen;
Patrick McHardy814a175e2006-11-29 17:34:50 -08001356 qdisc_reset(cl->un.leaf.q);
Patrick McHardy256d61b2006-11-29 17:37:05 -08001357 qdisc_tree_decrease_qlen(cl->un.leaf.q, qlen);
Patrick McHardy814a175e2006-11-29 17:34:50 -08001358 }
1359
Patrick McHardyc38c83c2007-03-27 14:04:24 -07001360 /* delete from hash and active; remainder in destroy_class */
1361 hlist_del_init(&cl->hlist);
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (cl->prio_activity)
Stephen Hemminger87990462006-08-10 23:35:16 -07001364 htb_deactivate(q, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001366 if (last_child)
1367 htb_parent_to_leaf(cl, new_q);
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001370 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 sch_tree_unlock(sch);
1373 return 0;
1374}
1375
1376static void htb_put(struct Qdisc *sch, unsigned long arg)
1377{
Stephen Hemminger87990462006-08-10 23:35:16 -07001378 struct htb_class *cl = (struct htb_class *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 if (--cl->refcnt == 0)
Stephen Hemminger87990462006-08-10 23:35:16 -07001381 htb_destroy_class(sch, cl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382}
1383
Stephen Hemminger87990462006-08-10 23:35:16 -07001384static int htb_change_class(struct Qdisc *sch, u32 classid,
1385 u32 parentid, struct rtattr **tca,
1386 unsigned long *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 int err = -EINVAL;
1389 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001390 struct htb_class *cl = (struct htb_class *)*arg, *parent;
1391 struct rtattr *opt = tca[TCA_OPTIONS - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 struct qdisc_rate_table *rtab = NULL, *ctab = NULL;
1393 struct rtattr *tb[TCA_HTB_RTAB];
1394 struct tc_htb_opt *hopt;
1395
1396 /* extract all subattrs from opt attr */
1397 if (!opt || rtattr_parse_nested(tb, TCA_HTB_RTAB, opt) ||
Stephen Hemminger87990462006-08-10 23:35:16 -07001398 tb[TCA_HTB_PARMS - 1] == NULL ||
1399 RTA_PAYLOAD(tb[TCA_HTB_PARMS - 1]) < sizeof(*hopt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Stephen Hemminger87990462006-08-10 23:35:16 -07001402 parent = parentid == TC_H_ROOT ? NULL : htb_find(parentid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001403
Stephen Hemminger87990462006-08-10 23:35:16 -07001404 hopt = RTA_DATA(tb[TCA_HTB_PARMS - 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Stephen Hemminger87990462006-08-10 23:35:16 -07001406 rtab = qdisc_get_rtab(&hopt->rate, tb[TCA_HTB_RTAB - 1]);
1407 ctab = qdisc_get_rtab(&hopt->ceil, tb[TCA_HTB_CTAB - 1]);
1408 if (!rtab || !ctab)
1409 goto failure;
1410
1411 if (!cl) { /* new class */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 struct Qdisc *new_q;
Stephen Hemminger3696f622006-08-10 23:36:01 -07001413 int prio;
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 /* check for valid classid */
Stephen Hemminger87990462006-08-10 23:35:16 -07001416 if (!classid || TC_H_MAJ(classid ^ sch->handle)
1417 || htb_find(classid, sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 goto failure;
1419
1420 /* check maximal depth */
1421 if (parent && parent->parent && parent->parent->level < 2) {
1422 printk(KERN_ERR "htb: tree is too deep\n");
1423 goto failure;
1424 }
1425 err = -ENOBUFS;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07001426 if ((cl = kzalloc(sizeof(*cl), GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 goto failure;
Stephen Hemminger87990462006-08-10 23:35:16 -07001428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 cl->refcnt = 1;
1430 INIT_LIST_HEAD(&cl->sibling);
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001431 INIT_HLIST_NODE(&cl->hlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 INIT_LIST_HEAD(&cl->children);
1433 INIT_LIST_HEAD(&cl->un.leaf.drop_list);
Stephen Hemminger3696f622006-08-10 23:36:01 -07001434 RB_CLEAR_NODE(&cl->pq_node);
1435
1436 for (prio = 0; prio < TC_HTB_NUMPRIO; prio++)
1437 RB_CLEAR_NODE(&cl->node[prio]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 /* create leaf qdisc early because it uses kmalloc(GFP_KERNEL)
1440 so that can't be used inside of sch_tree_lock
1441 -- thanks to Karlis Peisenieks */
Patrick McHardy9f9afec2006-11-29 17:35:18 -08001442 new_q = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops, classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 sch_tree_lock(sch);
1444 if (parent && !parent->level) {
Patrick McHardy256d61b2006-11-29 17:37:05 -08001445 unsigned int qlen = parent->un.leaf.q->q.qlen;
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 /* turn parent into inner node */
Patrick McHardy256d61b2006-11-29 17:37:05 -08001448 qdisc_reset(parent->un.leaf.q);
1449 qdisc_tree_decrease_qlen(parent->un.leaf.q, qlen);
Stephen Hemminger87990462006-08-10 23:35:16 -07001450 qdisc_destroy(parent->un.leaf.q);
1451 if (parent->prio_activity)
1452 htb_deactivate(q, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 /* remove from evt list because of level change */
1455 if (parent->cmode != HTB_CAN_SEND) {
Stephen Hemminger3696f622006-08-10 23:36:01 -07001456 htb_safe_rb_erase(&parent->pq_node, q->wait_pq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 parent->cmode = HTB_CAN_SEND;
1458 }
1459 parent->level = (parent->parent ? parent->parent->level
Stephen Hemminger87990462006-08-10 23:35:16 -07001460 : TC_HTB_MAXDEPTH) - 1;
1461 memset(&parent->un.inner, 0, sizeof(parent->un.inner));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
1463 /* leaf (we) needs elementary qdisc */
1464 cl->un.leaf.q = new_q ? new_q : &noop_qdisc;
1465
Stephen Hemminger87990462006-08-10 23:35:16 -07001466 cl->classid = classid;
1467 cl->parent = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 /* set class to be in HTB_CAN_SEND state */
1470 cl->tokens = hopt->buffer;
1471 cl->ctokens = hopt->cbuffer;
Patrick McHardy00c04af2007-03-16 01:23:02 -07001472 cl->mbuffer = 60 * PSCHED_TICKS_PER_SEC; /* 1min */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 PSCHED_GET_TIME(cl->t_c);
1474 cl->cmode = HTB_CAN_SEND;
1475
1476 /* attach to the hash list and parent's family */
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001477 hlist_add_head(&cl->hlist, q->hash + htb_hash(classid));
Stephen Hemminger87990462006-08-10 23:35:16 -07001478 list_add_tail(&cl->sibling,
1479 parent ? &parent->children : &q->root);
1480 } else
1481 sch_tree_lock(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483 /* it used to be a nasty bug here, we have to check that node
Stephen Hemminger87990462006-08-10 23:35:16 -07001484 is really leaf before changing cl->un.leaf ! */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 if (!cl->level) {
1486 cl->un.leaf.quantum = rtab->rate.rate / q->rate2quantum;
1487 if (!hopt->quantum && cl->un.leaf.quantum < 1000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001488 printk(KERN_WARNING
1489 "HTB: quantum of class %X is small. Consider r2q change.\n",
1490 cl->classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 cl->un.leaf.quantum = 1000;
1492 }
1493 if (!hopt->quantum && cl->un.leaf.quantum > 200000) {
Stephen Hemminger87990462006-08-10 23:35:16 -07001494 printk(KERN_WARNING
1495 "HTB: quantum of class %X is big. Consider r2q change.\n",
1496 cl->classid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 cl->un.leaf.quantum = 200000;
1498 }
1499 if (hopt->quantum)
1500 cl->un.leaf.quantum = hopt->quantum;
1501 if ((cl->un.leaf.prio = hopt->prio) >= TC_HTB_NUMPRIO)
1502 cl->un.leaf.prio = TC_HTB_NUMPRIO - 1;
Jarek Poplawski160d5e12006-12-08 00:26:56 -08001503
1504 /* backup for htb_parent_to_leaf */
1505 cl->quantum = cl->un.leaf.quantum;
1506 cl->prio = cl->un.leaf.prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
1508
1509 cl->buffer = hopt->buffer;
1510 cl->cbuffer = hopt->cbuffer;
Stephen Hemminger87990462006-08-10 23:35:16 -07001511 if (cl->rate)
1512 qdisc_put_rtab(cl->rate);
1513 cl->rate = rtab;
1514 if (cl->ceil)
1515 qdisc_put_rtab(cl->ceil);
1516 cl->ceil = ctab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 sch_tree_unlock(sch);
1518
1519 *arg = (unsigned long)cl;
1520 return 0;
1521
1522failure:
Stephen Hemminger87990462006-08-10 23:35:16 -07001523 if (rtab)
1524 qdisc_put_rtab(rtab);
1525 if (ctab)
1526 qdisc_put_rtab(ctab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 return err;
1528}
1529
1530static struct tcf_proto **htb_find_tcf(struct Qdisc *sch, unsigned long arg)
1531{
1532 struct htb_sched *q = qdisc_priv(sch);
1533 struct htb_class *cl = (struct htb_class *)arg;
1534 struct tcf_proto **fl = cl ? &cl->filter_list : &q->filter_list;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 return fl;
1537}
1538
1539static unsigned long htb_bind_filter(struct Qdisc *sch, unsigned long parent,
Stephen Hemminger87990462006-08-10 23:35:16 -07001540 u32 classid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
1542 struct htb_sched *q = qdisc_priv(sch);
Stephen Hemminger87990462006-08-10 23:35:16 -07001543 struct htb_class *cl = htb_find(classid, sch);
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 /*if (cl && !cl->level) return 0;
Stephen Hemminger87990462006-08-10 23:35:16 -07001546 The line above used to be there to prevent attaching filters to
1547 leaves. But at least tc_index filter uses this just to get class
1548 for other reasons so that we have to allow for it.
1549 ----
1550 19.6.2002 As Werner explained it is ok - bind filter is just
1551 another way to "lock" the class - unlike "get" this lock can
1552 be broken by class during destroy IIUC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 */
Stephen Hemminger87990462006-08-10 23:35:16 -07001554 if (cl)
1555 cl->filter_cnt++;
1556 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 q->filter_cnt++;
1558 return (unsigned long)cl;
1559}
1560
1561static void htb_unbind_filter(struct Qdisc *sch, unsigned long arg)
1562{
1563 struct htb_sched *q = qdisc_priv(sch);
1564 struct htb_class *cl = (struct htb_class *)arg;
Stephen Hemminger3bf72952006-08-10 23:31:08 -07001565
Stephen Hemminger87990462006-08-10 23:35:16 -07001566 if (cl)
1567 cl->filter_cnt--;
1568 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 q->filter_cnt--;
1570}
1571
1572static void htb_walk(struct Qdisc *sch, struct qdisc_walker *arg)
1573{
1574 struct htb_sched *q = qdisc_priv(sch);
1575 int i;
1576
1577 if (arg->stop)
1578 return;
1579
1580 for (i = 0; i < HTB_HSIZE; i++) {
Stephen Hemminger0cef2962006-08-10 23:35:38 -07001581 struct hlist_node *p;
1582 struct htb_class *cl;
1583
1584 hlist_for_each_entry(cl, p, q->hash + i, hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (arg->count < arg->skip) {
1586 arg->count++;
1587 continue;
1588 }
1589 if (arg->fn(sch, (unsigned long)cl, arg) < 0) {
1590 arg->stop = 1;
1591 return;
1592 }
1593 arg->count++;
1594 }
1595 }
1596}
1597
1598static struct Qdisc_class_ops htb_class_ops = {
1599 .graft = htb_graft,
1600 .leaf = htb_leaf,
Patrick McHardy256d61b2006-11-29 17:37:05 -08001601 .qlen_notify = htb_qlen_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 .get = htb_get,
1603 .put = htb_put,
1604 .change = htb_change_class,
1605 .delete = htb_delete,
1606 .walk = htb_walk,
1607 .tcf_chain = htb_find_tcf,
1608 .bind_tcf = htb_bind_filter,
1609 .unbind_tcf = htb_unbind_filter,
1610 .dump = htb_dump_class,
1611 .dump_stats = htb_dump_class_stats,
1612};
1613
1614static struct Qdisc_ops htb_qdisc_ops = {
1615 .next = NULL,
1616 .cl_ops = &htb_class_ops,
1617 .id = "htb",
1618 .priv_size = sizeof(struct htb_sched),
1619 .enqueue = htb_enqueue,
1620 .dequeue = htb_dequeue,
1621 .requeue = htb_requeue,
1622 .drop = htb_drop,
1623 .init = htb_init,
1624 .reset = htb_reset,
1625 .destroy = htb_destroy,
1626 .change = NULL /* htb_change */,
1627 .dump = htb_dump,
1628 .owner = THIS_MODULE,
1629};
1630
1631static int __init htb_module_init(void)
1632{
Stephen Hemminger87990462006-08-10 23:35:16 -07001633 return register_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
Stephen Hemminger87990462006-08-10 23:35:16 -07001635static void __exit htb_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
Stephen Hemminger87990462006-08-10 23:35:16 -07001637 unregister_qdisc(&htb_qdisc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638}
Stephen Hemminger87990462006-08-10 23:35:16 -07001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640module_init(htb_module_init)
1641module_exit(htb_module_exit)
1642MODULE_LICENSE("GPL");