blob: a52490c7af3cb71f7a1c9df3f655219fb2a3bf0a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/sched/sch_gred.c Generic Random Early Detection queue.
3 *
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
10 * Authors: J Hadi Salim (hadi@cyberus.ca) 1998-2002
11 *
12 * 991129: - Bug fix with grio mode
13 * - a better sing. AvgQ mode with Grio(WRED)
14 * - A finer grained VQ dequeue based on sugestion
15 * from Ren Liu
16 * - More error checks
17 *
18 *
19 *
20 * For all the glorious comments look at Alexey's sch_red.c
21 */
22
23#include <linux/config.h>
24#include <linux/module.h>
25#include <asm/uaccess.h>
26#include <asm/system.h>
27#include <linux/bitops.h>
28#include <linux/types.h>
29#include <linux/kernel.h>
30#include <linux/sched.h>
31#include <linux/string.h>
32#include <linux/mm.h>
33#include <linux/socket.h>
34#include <linux/sockios.h>
35#include <linux/in.h>
36#include <linux/errno.h>
37#include <linux/interrupt.h>
38#include <linux/if_ether.h>
39#include <linux/inet.h>
40#include <linux/netdevice.h>
41#include <linux/etherdevice.h>
42#include <linux/notifier.h>
43#include <net/ip.h>
44#include <net/route.h>
45#include <linux/skbuff.h>
46#include <net/sock.h>
47#include <net/pkt_sched.h>
Thomas Graf22b33422005-11-05 21:14:16 +010048#include <net/red.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#if 1 /* control */
51#define DPRINTK(format,args...) printk(KERN_DEBUG format,##args)
52#else
53#define DPRINTK(format,args...)
54#endif
55
56#if 0 /* data */
57#define D2PRINTK(format,args...) printk(KERN_DEBUG format,##args)
58#else
59#define D2PRINTK(format,args...)
60#endif
61
Thomas Graff62d6b92005-11-05 21:14:15 +010062#define GRED_DEF_PRIO (MAX_DPs / 2)
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064struct gred_sched_data;
65struct gred_sched;
66
67struct gred_sched_data
68{
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 u32 limit; /* HARD maximal queue length */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 u32 DP; /* the drop pramaters */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 u32 bytesin; /* bytes seen on virtualQ so far*/
72 u32 packetsin; /* packets seen on virtualQ so far*/
73 u32 backlog; /* bytes on the virtualQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 u8 prio; /* the prio of this vq */
75
Thomas Graf22b33422005-11-05 21:14:16 +010076 struct red_parms parms;
77 struct red_stats stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
Thomas Grafdea3f622005-11-05 21:14:09 +010080enum {
81 GRED_WRED_MODE = 1,
Thomas Grafd6fd4e92005-11-05 21:14:10 +010082 GRED_RIO_MODE,
Thomas Grafdea3f622005-11-05 21:14:09 +010083};
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085struct gred_sched
86{
87 struct gred_sched_data *tab[MAX_DPs];
Thomas Grafdea3f622005-11-05 21:14:09 +010088 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 u32 DPs;
90 u32 def;
91 u8 initd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
Thomas Grafdea3f622005-11-05 21:14:09 +010094static inline int gred_wred_mode(struct gred_sched *table)
95{
96 return test_bit(GRED_WRED_MODE, &table->flags);
97}
98
99static inline void gred_enable_wred_mode(struct gred_sched *table)
100{
101 __set_bit(GRED_WRED_MODE, &table->flags);
102}
103
104static inline void gred_disable_wred_mode(struct gred_sched *table)
105{
106 __clear_bit(GRED_WRED_MODE, &table->flags);
107}
108
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100109static inline int gred_rio_mode(struct gred_sched *table)
110{
111 return test_bit(GRED_RIO_MODE, &table->flags);
112}
113
114static inline void gred_enable_rio_mode(struct gred_sched *table)
115{
116 __set_bit(GRED_RIO_MODE, &table->flags);
117}
118
119static inline void gred_disable_rio_mode(struct gred_sched *table)
120{
121 __clear_bit(GRED_RIO_MODE, &table->flags);
122}
123
Thomas Grafdea3f622005-11-05 21:14:09 +0100124static inline int gred_wred_mode_check(struct Qdisc *sch)
125{
126 struct gred_sched *table = qdisc_priv(sch);
127 int i;
128
129 /* Really ugly O(n^2) but shouldn't be necessary too frequent. */
130 for (i = 0; i < table->DPs; i++) {
131 struct gred_sched_data *q = table->tab[i];
132 int n;
133
134 if (q == NULL)
135 continue;
136
137 for (n = 0; n < table->DPs; n++)
138 if (table->tab[n] && table->tab[n] != q &&
139 table->tab[n]->prio == q->prio)
140 return 1;
141 }
142
143 return 0;
144}
145
Thomas Graf22b33422005-11-05 21:14:16 +0100146static inline unsigned int gred_backlog(struct gred_sched *table,
147 struct gred_sched_data *q,
148 struct Qdisc *sch)
149{
150 if (gred_wred_mode(table))
151 return sch->qstats.backlog;
152 else
153 return q->backlog;
154}
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static int
157gred_enqueue(struct sk_buff *skb, struct Qdisc* sch)
158{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct gred_sched_data *q=NULL;
160 struct gred_sched *t= qdisc_priv(sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100161 unsigned long qavg = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 int i=0;
163
164 if (!t->initd && skb_queue_len(&sch->q) < (sch->dev->tx_queue_len ? : 1)) {
165 D2PRINTK("NO GRED Queues setup yet! Enqueued anyway\n");
166 goto do_enqueue;
167 }
168
169
170 if ( ((skb->tc_index&0xf) > (t->DPs -1)) || !(q=t->tab[skb->tc_index&0xf])) {
171 printk("GRED: setting to default (%d)\n ",t->def);
172 if (!(q=t->tab[t->def])) {
173 DPRINTK("GRED: setting to default FAILED! dropping!! "
174 "(%d)\n ", t->def);
175 goto drop;
176 }
177 /* fix tc_index? --could be controvesial but needed for
178 requeueing */
179 skb->tc_index=(skb->tc_index&0xfffffff0) | t->def;
180 }
181
182 D2PRINTK("gred_enqueue virtualQ 0x%x classid %x backlog %d "
183 "general backlog %d\n",skb->tc_index&0xf,sch->handle,q->backlog,
184 sch->qstats.backlog);
185 /* sum up all the qaves of prios <= to ours to get the new qave*/
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100186 if (!gred_wred_mode(t) && gred_rio_mode(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 for (i=0;i<t->DPs;i++) {
188 if ((!t->tab[i]) || (i==q->DP))
189 continue;
190
Thomas Graf22b33422005-11-05 21:14:16 +0100191 if (t->tab[i]->prio < q->prio &&
192 !red_is_idling(&t->tab[i]->parms))
193 qavg +=t->tab[i]->parms.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195
196 }
197
198 q->packetsin++;
199 q->bytesin+=skb->len;
200
Thomas Grafdea3f622005-11-05 21:14:09 +0100201 if (gred_wred_mode(t)) {
Thomas Graf22b33422005-11-05 21:14:16 +0100202 qavg = 0;
203 q->parms.qavg = t->tab[t->def]->parms.qavg;
204 q->parms.qidlestart = t->tab[t->def]->parms.qidlestart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206
Thomas Graf22b33422005-11-05 21:14:16 +0100207 q->parms.qavg = red_calc_qavg(&q->parms, gred_backlog(t, q, sch));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Thomas Graf22b33422005-11-05 21:14:16 +0100209 if (red_is_idling(&q->parms))
210 red_end_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Thomas Grafdea3f622005-11-05 21:14:09 +0100212 if (gred_wred_mode(t))
Thomas Graf22b33422005-11-05 21:14:16 +0100213 t->tab[t->def]->parms.qavg = q->parms.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Thomas Graf22b33422005-11-05 21:14:16 +0100215 switch (red_action(&q->parms, q->parms.qavg + qavg)) {
216 case RED_DONT_MARK:
217 break;
218
219 case RED_PROB_MARK:
220 sch->qstats.overlimits++;
221 q->stats.prob_drop++;
222 goto drop;
223
224 case RED_HARD_MARK:
225 sch->qstats.overlimits++;
226 q->stats.forced_drop++;
227 goto drop;
228 }
229
230 if (q->backlog + skb->len <= q->limit) {
231 q->backlog += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232do_enqueue:
Thomas Graf22b33422005-11-05 21:14:16 +0100233 __skb_queue_tail(&sch->q, skb);
234 sch->qstats.backlog += skb->len;
235 sch->bstats.bytes += skb->len;
236 sch->bstats.packets++;
237 return 0;
238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Thomas Graf22b33422005-11-05 21:14:16 +0100240 q->stats.pdrop++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241drop:
Thomas Graf22b33422005-11-05 21:14:16 +0100242 kfree_skb(skb);
243 sch->qstats.drops++;
244 return NET_XMIT_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247static int
248gred_requeue(struct sk_buff *skb, struct Qdisc* sch)
249{
250 struct gred_sched_data *q;
251 struct gred_sched *t= qdisc_priv(sch);
252 q= t->tab[(skb->tc_index&0xf)];
253/* error checking here -- probably unnecessary */
Thomas Graf22b33422005-11-05 21:14:16 +0100254
255 if (red_is_idling(&q->parms))
256 red_end_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 __skb_queue_head(&sch->q, skb);
259 sch->qstats.backlog += skb->len;
260 sch->qstats.requeues++;
261 q->backlog += skb->len;
262 return 0;
263}
264
265static struct sk_buff *
266gred_dequeue(struct Qdisc* sch)
267{
268 struct sk_buff *skb;
269 struct gred_sched_data *q;
270 struct gred_sched *t= qdisc_priv(sch);
271
272 skb = __skb_dequeue(&sch->q);
273 if (skb) {
274 sch->qstats.backlog -= skb->len;
275 q= t->tab[(skb->tc_index&0xf)];
276 if (q) {
277 q->backlog -= skb->len;
Thomas Grafdea3f622005-11-05 21:14:09 +0100278 if (!q->backlog && !gred_wred_mode(t))
Thomas Graf22b33422005-11-05 21:14:16 +0100279 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 } else {
281 D2PRINTK("gred_dequeue: skb has bad tcindex %x\n",skb->tc_index&0xf);
282 }
283 return skb;
284 }
285
Thomas Grafdea3f622005-11-05 21:14:09 +0100286 if (gred_wred_mode(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 q= t->tab[t->def];
288 if (!q)
289 D2PRINTK("no default VQ set: Results will be "
290 "screwed up\n");
291 else
Thomas Graf22b33422005-11-05 21:14:16 +0100292 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294
295 return NULL;
296}
297
298static unsigned int gred_drop(struct Qdisc* sch)
299{
300 struct sk_buff *skb;
301
302 struct gred_sched_data *q;
303 struct gred_sched *t= qdisc_priv(sch);
304
305 skb = __skb_dequeue_tail(&sch->q);
306 if (skb) {
307 unsigned int len = skb->len;
308 sch->qstats.backlog -= len;
309 sch->qstats.drops++;
310 q= t->tab[(skb->tc_index&0xf)];
311 if (q) {
312 q->backlog -= len;
Thomas Graf22b33422005-11-05 21:14:16 +0100313 q->stats.other++;
Thomas Grafdea3f622005-11-05 21:14:09 +0100314 if (!q->backlog && !gred_wred_mode(t))
Thomas Graf22b33422005-11-05 21:14:16 +0100315 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 } else {
317 D2PRINTK("gred_dequeue: skb has bad tcindex %x\n",skb->tc_index&0xf);
318 }
319
320 kfree_skb(skb);
321 return len;
322 }
323
324 q=t->tab[t->def];
325 if (!q) {
326 D2PRINTK("no default VQ set: Results might be screwed up\n");
327 return 0;
328 }
329
Thomas Graf22b33422005-11-05 21:14:16 +0100330 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return 0;
332
333}
334
335static void gred_reset(struct Qdisc* sch)
336{
337 int i;
338 struct gred_sched_data *q;
339 struct gred_sched *t= qdisc_priv(sch);
340
341 __skb_queue_purge(&sch->q);
342
343 sch->qstats.backlog = 0;
344
345 for (i=0;i<t->DPs;i++) {
346 q= t->tab[i];
347 if (!q)
348 continue;
Thomas Graf22b33422005-11-05 21:14:16 +0100349 red_restart(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 q->backlog = 0;
Thomas Graf22b33422005-11-05 21:14:16 +0100351 q->stats.other = 0;
352 q->stats.forced_drop = 0;
353 q->stats.prob_drop = 0;
354 q->stats.pdrop = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356}
357
Thomas Graf66396072005-11-05 21:14:13 +0100358static inline void gred_destroy_vq(struct gred_sched_data *q)
359{
360 kfree(q);
361}
362
363static inline int gred_change_table_def(struct Qdisc *sch, struct rtattr *dps)
364{
365 struct gred_sched *table = qdisc_priv(sch);
366 struct tc_gred_sopt *sopt;
367 int i;
368
369 if (dps == NULL || RTA_PAYLOAD(dps) < sizeof(*sopt))
370 return -EINVAL;
371
372 sopt = RTA_DATA(dps);
373
374 if (sopt->DPs > MAX_DPs || sopt->DPs == 0 || sopt->def_DP >= sopt->DPs)
375 return -EINVAL;
376
377 sch_tree_lock(sch);
378 table->DPs = sopt->DPs;
379 table->def = sopt->def_DP;
380
381 /*
382 * Every entry point to GRED is synchronized with the above code
383 * and the DP is checked against DPs, i.e. shadowed VQs can no
384 * longer be found so we can unlock right here.
385 */
386 sch_tree_unlock(sch);
387
388 if (sopt->grio) {
389 gred_enable_rio_mode(table);
390 gred_disable_wred_mode(table);
391 if (gred_wred_mode_check(sch))
392 gred_enable_wred_mode(table);
393 } else {
394 gred_disable_rio_mode(table);
395 gred_disable_wred_mode(table);
396 }
397
398 for (i = table->DPs; i < MAX_DPs; i++) {
399 if (table->tab[i]) {
400 printk(KERN_WARNING "GRED: Warning: Destroying "
401 "shadowed VQ 0x%x\n", i);
402 gred_destroy_vq(table->tab[i]);
403 table->tab[i] = NULL;
404 }
405 }
406
407 table->initd = 0;
408
409 return 0;
410}
411
Thomas Graff62d6b92005-11-05 21:14:15 +0100412static inline int gred_change_vq(struct Qdisc *sch, int dp,
413 struct tc_gred_qopt *ctl, int prio, u8 *stab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 struct gred_sched *table = qdisc_priv(sch);
416 struct gred_sched_data *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Thomas Graff62d6b92005-11-05 21:14:15 +0100418 if (table->tab[dp] == NULL) {
419 table->tab[dp] = kmalloc(sizeof(*q), GFP_KERNEL);
420 if (table->tab[dp] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return -ENOMEM;
Thomas Graff62d6b92005-11-05 21:14:15 +0100422 memset(table->tab[dp], 0, sizeof(*q));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424
Thomas Graff62d6b92005-11-05 21:14:15 +0100425 q = table->tab[dp];
426 q->DP = dp;
427 q->prio = prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 q->limit = ctl->limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Thomas Graf22b33422005-11-05 21:14:16 +0100430 if (q->backlog == 0)
431 red_end_of_idle_period(&q->parms);
432
433 red_set_parms(&q->parms,
434 ctl->qth_min, ctl->qth_max, ctl->Wlog, ctl->Plog,
435 ctl->Scell_log, stab);
436
437 q->stats.other = 0;
438 q->stats.forced_drop = 0;
439 q->stats.prob_drop = 0;
440 q->stats.pdrop = 0;
Thomas Graff62d6b92005-11-05 21:14:15 +0100441
442 return 0;
443}
444
445static int gred_change(struct Qdisc *sch, struct rtattr *opt)
446{
447 struct gred_sched *table = qdisc_priv(sch);
448 struct tc_gred_qopt *ctl;
449 struct rtattr *tb[TCA_GRED_MAX];
450 int err = -EINVAL, prio = GRED_DEF_PRIO;
451 u8 *stab;
452
453 if (opt == NULL || rtattr_parse_nested(tb, TCA_GRED_MAX, opt))
454 return -EINVAL;
455
456 if (tb[TCA_GRED_PARMS-1] == NULL && tb[TCA_GRED_STAB-1] == NULL)
457 return gred_change_table_def(sch, opt);
458
459 if (tb[TCA_GRED_PARMS-1] == NULL ||
460 RTA_PAYLOAD(tb[TCA_GRED_PARMS-1]) < sizeof(*ctl) ||
461 tb[TCA_GRED_STAB-1] == NULL ||
462 RTA_PAYLOAD(tb[TCA_GRED_STAB-1]) < 256)
463 return -EINVAL;
464
465 ctl = RTA_DATA(tb[TCA_GRED_PARMS-1]);
466 stab = RTA_DATA(tb[TCA_GRED_STAB-1]);
467
468 if (ctl->DP >= table->DPs)
469 goto errout;
470
471 if (gred_rio_mode(table)) {
472 if (ctl->prio == 0) {
473 int def_prio = GRED_DEF_PRIO;
474
475 if (table->tab[table->def])
476 def_prio = table->tab[table->def]->prio;
477
478 printk(KERN_DEBUG "GRED: DP %u does not have a prio "
479 "setting default to %d\n", ctl->DP, def_prio);
480
481 prio = def_prio;
482 } else
483 prio = ctl->prio;
484 }
485
486 sch_tree_lock(sch);
487
488 err = gred_change_vq(sch, ctl->DP, ctl, prio, stab);
489 if (err < 0)
490 goto errout_locked;
491
492 if (table->tab[table->def] == NULL) {
493 if (gred_rio_mode(table))
494 prio = table->tab[ctl->DP]->prio;
495
496 err = gred_change_vq(sch, table->def, ctl, prio, stab);
497 if (err < 0)
498 goto errout_locked;
499 }
500
501 table->initd = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100503 if (gred_rio_mode(table)) {
Thomas Grafdea3f622005-11-05 21:14:09 +0100504 gred_disable_wred_mode(table);
505 if (gred_wred_mode_check(sch))
506 gred_enable_wred_mode(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508
Thomas Graff62d6b92005-11-05 21:14:15 +0100509 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Thomas Graff62d6b92005-11-05 21:14:15 +0100511errout_locked:
512 sch_tree_unlock(sch);
513errout:
514 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
517static int gred_init(struct Qdisc *sch, struct rtattr *opt)
518{
Thomas Graf66396072005-11-05 21:14:13 +0100519 struct rtattr *tb[TCA_GRED_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Thomas Graf66396072005-11-05 21:14:13 +0100521 if (opt == NULL || rtattr_parse_nested(tb, TCA_GRED_MAX, opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return -EINVAL;
523
Thomas Graf66396072005-11-05 21:14:13 +0100524 if (tb[TCA_GRED_PARMS-1] || tb[TCA_GRED_STAB-1])
525 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Thomas Graf66396072005-11-05 21:14:13 +0100527 return gred_change_table_def(sch, tb[TCA_GRED_DPS-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
530static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
531{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 struct gred_sched *table = qdisc_priv(sch);
Thomas Graf05f1cc02005-11-05 21:14:11 +0100533 struct rtattr *parms, *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int i;
Thomas Grafe0636822005-11-05 21:14:12 +0100535 struct tc_gred_sopt sopt = {
536 .DPs = table->DPs,
537 .def_DP = table->def,
538 .grio = gred_rio_mode(table),
539 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Thomas Graf05f1cc02005-11-05 21:14:11 +0100541 opts = RTA_NEST(skb, TCA_OPTIONS);
Thomas Grafe0636822005-11-05 21:14:12 +0100542 RTA_PUT(skb, TCA_GRED_DPS, sizeof(sopt), &sopt);
Thomas Graf05f1cc02005-11-05 21:14:11 +0100543 parms = RTA_NEST(skb, TCA_GRED_PARMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Thomas Graf05f1cc02005-11-05 21:14:11 +0100545 for (i = 0; i < MAX_DPs; i++) {
546 struct gred_sched_data *q = table->tab[i];
547 struct tc_gred_qopt opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Thomas Graf05f1cc02005-11-05 21:14:11 +0100549 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 if (!q) {
552 /* hack -- fix at some point with proper message
553 This is how we indicate to tc that there is no VQ
554 at this DP */
555
Thomas Graf05f1cc02005-11-05 21:14:11 +0100556 opt.DP = MAX_DPs + i;
557 goto append_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559
Thomas Graf05f1cc02005-11-05 21:14:11 +0100560 opt.limit = q->limit;
561 opt.DP = q->DP;
562 opt.backlog = q->backlog;
563 opt.prio = q->prio;
Thomas Graf22b33422005-11-05 21:14:16 +0100564 opt.qth_min = q->parms.qth_min >> q->parms.Wlog;
565 opt.qth_max = q->parms.qth_max >> q->parms.Wlog;
566 opt.Wlog = q->parms.Wlog;
567 opt.Plog = q->parms.Plog;
568 opt.Scell_log = q->parms.Scell_log;
569 opt.other = q->stats.other;
570 opt.early = q->stats.prob_drop;
571 opt.forced = q->stats.forced_drop;
572 opt.pdrop = q->stats.pdrop;
Thomas Graf05f1cc02005-11-05 21:14:11 +0100573 opt.packets = q->packetsin;
574 opt.bytesin = q->bytesin;
575
Thomas Graf22b33422005-11-05 21:14:16 +0100576 if (gred_wred_mode(table)) {
577 q->parms.qidlestart =
578 table->tab[table->def]->parms.qidlestart;
579 q->parms.qavg = table->tab[table->def]->parms.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Thomas Graf22b33422005-11-05 21:14:16 +0100582 opt.qave = red_calc_qavg(&q->parms, q->parms.qavg);
583
Thomas Graf05f1cc02005-11-05 21:14:11 +0100584append_opt:
585 RTA_APPEND(skb, sizeof(opt), &opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587
Thomas Graf05f1cc02005-11-05 21:14:11 +0100588 RTA_NEST_END(skb, parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Thomas Graf05f1cc02005-11-05 21:14:11 +0100590 return RTA_NEST_END(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592rtattr_failure:
Thomas Graf05f1cc02005-11-05 21:14:11 +0100593 return RTA_NEST_CANCEL(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
596static void gred_destroy(struct Qdisc *sch)
597{
598 struct gred_sched *table = qdisc_priv(sch);
599 int i;
600
601 for (i = 0;i < table->DPs; i++) {
602 if (table->tab[i])
Thomas Graf66396072005-11-05 21:14:13 +0100603 gred_destroy_vq(table->tab[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605}
606
607static struct Qdisc_ops gred_qdisc_ops = {
608 .next = NULL,
609 .cl_ops = NULL,
610 .id = "gred",
611 .priv_size = sizeof(struct gred_sched),
612 .enqueue = gred_enqueue,
613 .dequeue = gred_dequeue,
614 .requeue = gred_requeue,
615 .drop = gred_drop,
616 .init = gred_init,
617 .reset = gred_reset,
618 .destroy = gred_destroy,
619 .change = gred_change,
620 .dump = gred_dump,
621 .owner = THIS_MODULE,
622};
623
624static int __init gred_module_init(void)
625{
626 return register_qdisc(&gred_qdisc_ops);
627}
628static void __exit gred_module_exit(void)
629{
630 unregister_qdisc(&gred_qdisc_ops);
631}
632module_init(gred_module_init)
633module_exit(gred_module_exit)
634MODULE_LICENSE("GPL");