blob: 69f0fd45d4c3bf8e215262a6174c5f06fa8d235a [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 *
Thomas Graf1e4dfaf92005-11-05 21:14:25 +010018 * For all the glorious comments look at include/net/red.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 */
20
21#include <linux/config.h>
22#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/types.h>
24#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <net/pkt_sched.h>
Thomas Graf22b33422005-11-05 21:14:16 +010028#include <net/red.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Thomas Graff62d6b92005-11-05 21:14:15 +010030#define GRED_DEF_PRIO (MAX_DPs / 2)
Thomas Graf716a1b42005-11-05 21:14:20 +010031#define GRED_VQ_MASK (MAX_DPs - 1)
Thomas Graff62d6b92005-11-05 21:14:15 +010032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033struct gred_sched_data;
34struct gred_sched;
35
36struct gred_sched_data
37{
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 u32 limit; /* HARD maximal queue length */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 u32 DP; /* the drop pramaters */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 u32 bytesin; /* bytes seen on virtualQ so far*/
41 u32 packetsin; /* packets seen on virtualQ so far*/
42 u32 backlog; /* bytes on the virtualQ */
Thomas Graf1e4dfaf92005-11-05 21:14:25 +010043 u8 prio; /* the prio of this vq */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Thomas Graf22b33422005-11-05 21:14:16 +010045 struct red_parms parms;
46 struct red_stats stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
48
Thomas Grafdea3f622005-11-05 21:14:09 +010049enum {
50 GRED_WRED_MODE = 1,
Thomas Grafd6fd4e92005-11-05 21:14:10 +010051 GRED_RIO_MODE,
Thomas Grafdea3f622005-11-05 21:14:09 +010052};
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054struct gred_sched
55{
56 struct gred_sched_data *tab[MAX_DPs];
Thomas Grafdea3f622005-11-05 21:14:09 +010057 unsigned long flags;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +010058 u32 DPs;
59 u32 def;
Thomas Graf70517032005-11-05 21:14:23 +010060 struct red_parms wred_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Thomas Grafdea3f622005-11-05 21:14:09 +010063static inline int gred_wred_mode(struct gred_sched *table)
64{
65 return test_bit(GRED_WRED_MODE, &table->flags);
66}
67
68static inline void gred_enable_wred_mode(struct gred_sched *table)
69{
70 __set_bit(GRED_WRED_MODE, &table->flags);
71}
72
73static inline void gred_disable_wred_mode(struct gred_sched *table)
74{
75 __clear_bit(GRED_WRED_MODE, &table->flags);
76}
77
Thomas Grafd6fd4e92005-11-05 21:14:10 +010078static inline int gred_rio_mode(struct gred_sched *table)
79{
80 return test_bit(GRED_RIO_MODE, &table->flags);
81}
82
83static inline void gred_enable_rio_mode(struct gred_sched *table)
84{
85 __set_bit(GRED_RIO_MODE, &table->flags);
86}
87
88static inline void gred_disable_rio_mode(struct gred_sched *table)
89{
90 __clear_bit(GRED_RIO_MODE, &table->flags);
91}
92
Thomas Grafdea3f622005-11-05 21:14:09 +010093static inline int gred_wred_mode_check(struct Qdisc *sch)
94{
95 struct gred_sched *table = qdisc_priv(sch);
96 int i;
97
98 /* Really ugly O(n^2) but shouldn't be necessary too frequent. */
99 for (i = 0; i < table->DPs; i++) {
100 struct gred_sched_data *q = table->tab[i];
101 int n;
102
103 if (q == NULL)
104 continue;
105
106 for (n = 0; n < table->DPs; n++)
107 if (table->tab[n] && table->tab[n] != q &&
108 table->tab[n]->prio == q->prio)
109 return 1;
110 }
111
112 return 0;
113}
114
Thomas Graf22b33422005-11-05 21:14:16 +0100115static inline unsigned int gred_backlog(struct gred_sched *table,
116 struct gred_sched_data *q,
117 struct Qdisc *sch)
118{
119 if (gred_wred_mode(table))
120 return sch->qstats.backlog;
121 else
122 return q->backlog;
123}
124
Thomas Graf716a1b42005-11-05 21:14:20 +0100125static inline u16 tc_index_to_dp(struct sk_buff *skb)
126{
127 return skb->tc_index & GRED_VQ_MASK;
128}
129
Thomas Graf70517032005-11-05 21:14:23 +0100130static inline void gred_load_wred_set(struct gred_sched *table,
131 struct gred_sched_data *q)
132{
133 q->parms.qavg = table->wred_set.qavg;
134 q->parms.qidlestart = table->wred_set.qidlestart;
135}
136
137static inline void gred_store_wred_set(struct gred_sched *table,
138 struct gred_sched_data *q)
139{
140 table->wred_set.qavg = q->parms.qavg;
141}
142
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100143static int gred_enqueue(struct sk_buff *skb, struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct gred_sched_data *q=NULL;
146 struct gred_sched *t= qdisc_priv(sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100147 unsigned long qavg = 0;
Thomas Graf4a591832005-11-05 21:14:22 +0100148 u16 dp = tc_index_to_dp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Thomas Graf716a1b42005-11-05 21:14:20 +0100150 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
Thomas Graf18e3fb842005-11-05 21:14:21 +0100151 dp = t->def;
152
153 if ((q = t->tab[dp]) == NULL) {
154 /* Pass through packets not assigned to a DP
155 * if no default DP has been configured. This
156 * allows for DP flows to be left untouched.
157 */
158 if (skb_queue_len(&sch->q) < sch->dev->tx_queue_len)
159 return qdisc_enqueue_tail(skb, sch);
160 else
161 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
Thomas Graf18e3fb842005-11-05 21:14:21 +0100163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /* fix tc_index? --could be controvesial but needed for
165 requeueing */
Thomas Graf18e3fb842005-11-05 21:14:21 +0100166 skb->tc_index = (skb->tc_index & ~GRED_VQ_MASK) | dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
168
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100169 /* sum up all the qaves of prios <= to ours to get the new qave */
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100170 if (!gred_wred_mode(t) && gred_rio_mode(t)) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100171 int i;
172
173 for (i = 0; i < t->DPs; i++) {
174 if (t->tab[i] && t->tab[i]->prio < q->prio &&
Thomas Graf22b33422005-11-05 21:14:16 +0100175 !red_is_idling(&t->tab[i]->parms))
176 qavg +=t->tab[i]->parms.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180
181 q->packetsin++;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100182 q->bytesin += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100184 if (gred_wred_mode(t))
Thomas Graf70517032005-11-05 21:14:23 +0100185 gred_load_wred_set(t, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Thomas Graf22b33422005-11-05 21:14:16 +0100187 q->parms.qavg = red_calc_qavg(&q->parms, gred_backlog(t, q, sch));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Thomas Graf22b33422005-11-05 21:14:16 +0100189 if (red_is_idling(&q->parms))
190 red_end_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Thomas Grafdea3f622005-11-05 21:14:09 +0100192 if (gred_wred_mode(t))
Thomas Graf70517032005-11-05 21:14:23 +0100193 gred_store_wred_set(t, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Thomas Graf22b33422005-11-05 21:14:16 +0100195 switch (red_action(&q->parms, q->parms.qavg + qavg)) {
196 case RED_DONT_MARK:
197 break;
198
199 case RED_PROB_MARK:
200 sch->qstats.overlimits++;
201 q->stats.prob_drop++;
Thomas Grafc3b553c2005-11-05 21:14:18 +0100202 goto congestion_drop;
Thomas Graf22b33422005-11-05 21:14:16 +0100203
204 case RED_HARD_MARK:
205 sch->qstats.overlimits++;
206 q->stats.forced_drop++;
Thomas Grafc3b553c2005-11-05 21:14:18 +0100207 goto congestion_drop;
Thomas Graf22b33422005-11-05 21:14:16 +0100208 }
209
210 if (q->backlog + skb->len <= q->limit) {
211 q->backlog += skb->len;
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100212 return qdisc_enqueue_tail(skb, sch);
Thomas Graf22b33422005-11-05 21:14:16 +0100213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Thomas Graf22b33422005-11-05 21:14:16 +0100215 q->stats.pdrop++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216drop:
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100217 return qdisc_drop(skb, sch);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100218
219congestion_drop:
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100220 qdisc_drop(skb, sch);
Thomas Grafc3b553c2005-11-05 21:14:18 +0100221 return NET_XMIT_CN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100224static int gred_requeue(struct sk_buff *skb, struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Thomas Graf716a1b42005-11-05 21:14:20 +0100226 struct gred_sched *t = qdisc_priv(sch);
Thomas Graf18e3fb842005-11-05 21:14:21 +0100227 struct gred_sched_data *q;
228 u16 dp = tc_index_to_dp(skb);
Thomas Graf22b33422005-11-05 21:14:16 +0100229
Thomas Graf18e3fb842005-11-05 21:14:21 +0100230 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
231 if (net_ratelimit())
232 printk(KERN_WARNING "GRED: Unable to relocate VQ 0x%x "
233 "for requeue, screwing up backlog.\n",
234 tc_index_to_dp(skb));
235 } else {
236 if (red_is_idling(&q->parms))
237 red_end_of_idle_period(&q->parms);
238 q->backlog += skb->len;
239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100241 return qdisc_requeue(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100244static struct sk_buff *gred_dequeue(struct Qdisc* sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 struct sk_buff *skb;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100247 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100249 skb = qdisc_dequeue_head(sch);
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (skb) {
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100252 struct gred_sched_data *q;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100253 u16 dp = tc_index_to_dp(skb);
254
255 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
256 if (net_ratelimit())
257 printk(KERN_WARNING "GRED: Unable to relocate "
258 "VQ 0x%x after dequeue, screwing up "
259 "backlog.\n", tc_index_to_dp(skb));
260 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 q->backlog -= skb->len;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100262
Thomas Grafdea3f622005-11-05 21:14:09 +0100263 if (!q->backlog && !gred_wred_mode(t))
Thomas Graf22b33422005-11-05 21:14:16 +0100264 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Thomas Graf18e3fb842005-11-05 21:14:21 +0100266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return skb;
268 }
269
Thomas Grafd8f64e12005-11-05 21:14:26 +0100270 if (gred_wred_mode(t) && !red_is_idling(&t->wred_set))
Thomas Graf70517032005-11-05 21:14:23 +0100271 red_start_of_idle_period(&t->wred_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 return NULL;
274}
275
276static unsigned int gred_drop(struct Qdisc* sch)
277{
278 struct sk_buff *skb;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100279 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100281 skb = qdisc_dequeue_tail(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (skb) {
283 unsigned int len = skb->len;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100284 struct gred_sched_data *q;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100285 u16 dp = tc_index_to_dp(skb);
286
287 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
288 if (net_ratelimit())
289 printk(KERN_WARNING "GRED: Unable to relocate "
290 "VQ 0x%x while dropping, screwing up "
291 "backlog.\n", tc_index_to_dp(skb));
292 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 q->backlog -= len;
Thomas Graf22b33422005-11-05 21:14:16 +0100294 q->stats.other++;
Thomas Graf18e3fb842005-11-05 21:14:21 +0100295
Thomas Grafdea3f622005-11-05 21:14:09 +0100296 if (!q->backlog && !gred_wred_mode(t))
Thomas Graf22b33422005-11-05 21:14:16 +0100297 red_start_of_idle_period(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100300 qdisc_drop(skb, sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return len;
302 }
303
Thomas Grafd8f64e12005-11-05 21:14:26 +0100304 if (gred_wred_mode(t) && !red_is_idling(&t->wred_set))
Thomas Graf70517032005-11-05 21:14:23 +0100305 red_start_of_idle_period(&t->wred_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return 0;
308
309}
310
311static void gred_reset(struct Qdisc* sch)
312{
313 int i;
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100314 struct gred_sched *t = qdisc_priv(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Thomas Grafedf7a7b2005-11-05 21:14:19 +0100316 qdisc_reset_queue(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100318 for (i = 0; i < t->DPs; i++) {
319 struct gred_sched_data *q = t->tab[i];
320
321 if (!q)
322 continue;
323
Thomas Graf22b33422005-11-05 21:14:16 +0100324 red_restart(&q->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 q->backlog = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327}
328
Thomas Graf66396072005-11-05 21:14:13 +0100329static inline void gred_destroy_vq(struct gred_sched_data *q)
330{
331 kfree(q);
332}
333
334static inline int gred_change_table_def(struct Qdisc *sch, struct rtattr *dps)
335{
336 struct gred_sched *table = qdisc_priv(sch);
337 struct tc_gred_sopt *sopt;
338 int i;
339
340 if (dps == NULL || RTA_PAYLOAD(dps) < sizeof(*sopt))
341 return -EINVAL;
342
343 sopt = RTA_DATA(dps);
344
345 if (sopt->DPs > MAX_DPs || sopt->DPs == 0 || sopt->def_DP >= sopt->DPs)
346 return -EINVAL;
347
348 sch_tree_lock(sch);
349 table->DPs = sopt->DPs;
350 table->def = sopt->def_DP;
351
352 /*
353 * Every entry point to GRED is synchronized with the above code
354 * and the DP is checked against DPs, i.e. shadowed VQs can no
355 * longer be found so we can unlock right here.
356 */
357 sch_tree_unlock(sch);
358
359 if (sopt->grio) {
360 gred_enable_rio_mode(table);
361 gred_disable_wred_mode(table);
362 if (gred_wred_mode_check(sch))
363 gred_enable_wred_mode(table);
364 } else {
365 gred_disable_rio_mode(table);
366 gred_disable_wred_mode(table);
367 }
368
369 for (i = table->DPs; i < MAX_DPs; i++) {
370 if (table->tab[i]) {
371 printk(KERN_WARNING "GRED: Warning: Destroying "
372 "shadowed VQ 0x%x\n", i);
373 gred_destroy_vq(table->tab[i]);
374 table->tab[i] = NULL;
375 }
376 }
377
Thomas Graf66396072005-11-05 21:14:13 +0100378 return 0;
379}
380
Thomas Graff62d6b92005-11-05 21:14:15 +0100381static inline int gred_change_vq(struct Qdisc *sch, int dp,
382 struct tc_gred_qopt *ctl, int prio, u8 *stab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 struct gred_sched *table = qdisc_priv(sch);
385 struct gred_sched_data *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Thomas Graff62d6b92005-11-05 21:14:15 +0100387 if (table->tab[dp] == NULL) {
388 table->tab[dp] = kmalloc(sizeof(*q), GFP_KERNEL);
389 if (table->tab[dp] == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return -ENOMEM;
Thomas Graff62d6b92005-11-05 21:14:15 +0100391 memset(table->tab[dp], 0, sizeof(*q));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
Thomas Graff62d6b92005-11-05 21:14:15 +0100394 q = table->tab[dp];
395 q->DP = dp;
396 q->prio = prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 q->limit = ctl->limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Thomas Graf22b33422005-11-05 21:14:16 +0100399 if (q->backlog == 0)
400 red_end_of_idle_period(&q->parms);
401
402 red_set_parms(&q->parms,
403 ctl->qth_min, ctl->qth_max, ctl->Wlog, ctl->Plog,
404 ctl->Scell_log, stab);
405
Thomas Graff62d6b92005-11-05 21:14:15 +0100406 return 0;
407}
408
409static int gred_change(struct Qdisc *sch, struct rtattr *opt)
410{
411 struct gred_sched *table = qdisc_priv(sch);
412 struct tc_gred_qopt *ctl;
413 struct rtattr *tb[TCA_GRED_MAX];
414 int err = -EINVAL, prio = GRED_DEF_PRIO;
415 u8 *stab;
416
417 if (opt == NULL || rtattr_parse_nested(tb, TCA_GRED_MAX, opt))
418 return -EINVAL;
419
420 if (tb[TCA_GRED_PARMS-1] == NULL && tb[TCA_GRED_STAB-1] == NULL)
421 return gred_change_table_def(sch, opt);
422
423 if (tb[TCA_GRED_PARMS-1] == NULL ||
424 RTA_PAYLOAD(tb[TCA_GRED_PARMS-1]) < sizeof(*ctl) ||
425 tb[TCA_GRED_STAB-1] == NULL ||
426 RTA_PAYLOAD(tb[TCA_GRED_STAB-1]) < 256)
427 return -EINVAL;
428
429 ctl = RTA_DATA(tb[TCA_GRED_PARMS-1]);
430 stab = RTA_DATA(tb[TCA_GRED_STAB-1]);
431
432 if (ctl->DP >= table->DPs)
433 goto errout;
434
435 if (gred_rio_mode(table)) {
436 if (ctl->prio == 0) {
437 int def_prio = GRED_DEF_PRIO;
438
439 if (table->tab[table->def])
440 def_prio = table->tab[table->def]->prio;
441
442 printk(KERN_DEBUG "GRED: DP %u does not have a prio "
443 "setting default to %d\n", ctl->DP, def_prio);
444
445 prio = def_prio;
446 } else
447 prio = ctl->prio;
448 }
449
450 sch_tree_lock(sch);
451
452 err = gred_change_vq(sch, ctl->DP, ctl, prio, stab);
453 if (err < 0)
454 goto errout_locked;
455
Thomas Grafd6fd4e92005-11-05 21:14:10 +0100456 if (gred_rio_mode(table)) {
Thomas Grafdea3f622005-11-05 21:14:09 +0100457 gred_disable_wred_mode(table);
458 if (gred_wred_mode_check(sch))
459 gred_enable_wred_mode(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461
Thomas Graff62d6b92005-11-05 21:14:15 +0100462 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Thomas Graff62d6b92005-11-05 21:14:15 +0100464errout_locked:
465 sch_tree_unlock(sch);
466errout:
467 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469
470static int gred_init(struct Qdisc *sch, struct rtattr *opt)
471{
Thomas Graf66396072005-11-05 21:14:13 +0100472 struct rtattr *tb[TCA_GRED_MAX];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Thomas Graf66396072005-11-05 21:14:13 +0100474 if (opt == NULL || rtattr_parse_nested(tb, TCA_GRED_MAX, opt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return -EINVAL;
476
Thomas Graf66396072005-11-05 21:14:13 +0100477 if (tb[TCA_GRED_PARMS-1] || tb[TCA_GRED_STAB-1])
478 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Thomas Graf66396072005-11-05 21:14:13 +0100480 return gred_change_table_def(sch, tb[TCA_GRED_DPS-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
483static int gred_dump(struct Qdisc *sch, struct sk_buff *skb)
484{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 struct gred_sched *table = qdisc_priv(sch);
Thomas Graf05f1cc02005-11-05 21:14:11 +0100486 struct rtattr *parms, *opts = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 int i;
Thomas Grafe0636822005-11-05 21:14:12 +0100488 struct tc_gred_sopt sopt = {
489 .DPs = table->DPs,
490 .def_DP = table->def,
491 .grio = gred_rio_mode(table),
492 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Thomas Graf05f1cc02005-11-05 21:14:11 +0100494 opts = RTA_NEST(skb, TCA_OPTIONS);
Thomas Grafe0636822005-11-05 21:14:12 +0100495 RTA_PUT(skb, TCA_GRED_DPS, sizeof(sopt), &sopt);
Thomas Graf05f1cc02005-11-05 21:14:11 +0100496 parms = RTA_NEST(skb, TCA_GRED_PARMS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Thomas Graf05f1cc02005-11-05 21:14:11 +0100498 for (i = 0; i < MAX_DPs; i++) {
499 struct gred_sched_data *q = table->tab[i];
500 struct tc_gred_qopt opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Thomas Graf05f1cc02005-11-05 21:14:11 +0100502 memset(&opt, 0, sizeof(opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 if (!q) {
505 /* hack -- fix at some point with proper message
506 This is how we indicate to tc that there is no VQ
507 at this DP */
508
Thomas Graf05f1cc02005-11-05 21:14:11 +0100509 opt.DP = MAX_DPs + i;
510 goto append_opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512
Thomas Graf05f1cc02005-11-05 21:14:11 +0100513 opt.limit = q->limit;
514 opt.DP = q->DP;
515 opt.backlog = q->backlog;
516 opt.prio = q->prio;
Thomas Graf22b33422005-11-05 21:14:16 +0100517 opt.qth_min = q->parms.qth_min >> q->parms.Wlog;
518 opt.qth_max = q->parms.qth_max >> q->parms.Wlog;
519 opt.Wlog = q->parms.Wlog;
520 opt.Plog = q->parms.Plog;
521 opt.Scell_log = q->parms.Scell_log;
522 opt.other = q->stats.other;
523 opt.early = q->stats.prob_drop;
524 opt.forced = q->stats.forced_drop;
525 opt.pdrop = q->stats.pdrop;
Thomas Graf05f1cc02005-11-05 21:14:11 +0100526 opt.packets = q->packetsin;
527 opt.bytesin = q->bytesin;
528
Thomas Graf22b33422005-11-05 21:14:16 +0100529 if (gred_wred_mode(table)) {
530 q->parms.qidlestart =
531 table->tab[table->def]->parms.qidlestart;
532 q->parms.qavg = table->tab[table->def]->parms.qavg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Thomas Graf22b33422005-11-05 21:14:16 +0100535 opt.qave = red_calc_qavg(&q->parms, q->parms.qavg);
536
Thomas Graf05f1cc02005-11-05 21:14:11 +0100537append_opt:
538 RTA_APPEND(skb, sizeof(opt), &opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
Thomas Graf05f1cc02005-11-05 21:14:11 +0100541 RTA_NEST_END(skb, parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Thomas Graf05f1cc02005-11-05 21:14:11 +0100543 return RTA_NEST_END(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545rtattr_failure:
Thomas Graf05f1cc02005-11-05 21:14:11 +0100546 return RTA_NEST_CANCEL(skb, opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
549static void gred_destroy(struct Qdisc *sch)
550{
551 struct gred_sched *table = qdisc_priv(sch);
552 int i;
553
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100554 for (i = 0; i < table->DPs; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (table->tab[i])
Thomas Graf66396072005-11-05 21:14:13 +0100556 gred_destroy_vq(table->tab[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558}
559
560static struct Qdisc_ops gred_qdisc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 .id = "gred",
562 .priv_size = sizeof(struct gred_sched),
563 .enqueue = gred_enqueue,
564 .dequeue = gred_dequeue,
565 .requeue = gred_requeue,
566 .drop = gred_drop,
567 .init = gred_init,
568 .reset = gred_reset,
569 .destroy = gred_destroy,
570 .change = gred_change,
571 .dump = gred_dump,
572 .owner = THIS_MODULE,
573};
574
575static int __init gred_module_init(void)
576{
577 return register_qdisc(&gred_qdisc_ops);
578}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100579
580static void __exit gred_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 unregister_qdisc(&gred_qdisc_ops);
583}
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585module_init(gred_module_init)
586module_exit(gred_module_exit)
Thomas Graf1e4dfaf92005-11-05 21:14:25 +0100587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588MODULE_LICENSE("GPL");