aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2005-11-05 15:14:25 -0500
committerThomas Graf <tgr@axs.localdomain>2005-11-05 16:02:28 -0500
commit1e4dfaf9b99a8b652e8421936fd5fe2459da8265 (patch)
treec2ecbf7558fcd34b054f28a797d6f3e88ab468a2
parent6214e653cc578947bf83d6766339a18a41c5b923 (diff)
[PKT_SCHED]: GRED: Cleanup and remove unnecessary code
Removes unnecessary includes, initializers, and simplifies the code a bit. Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
-rw-r--r--include/linux/pkt_sched.h48
-rw-r--r--net/sched/sch_gred.c100
2 files changed, 53 insertions, 95 deletions
diff --git a/include/linux/pkt_sched.h b/include/linux/pkt_sched.h
index 60ffcb9c5791..d053add3dca7 100644
--- a/include/linux/pkt_sched.h
+++ b/include/linux/pkt_sched.h
@@ -194,38 +194,34 @@ enum
194 194
195#define TCA_GRED_MAX (__TCA_GRED_MAX - 1) 195#define TCA_GRED_MAX (__TCA_GRED_MAX - 1)
196 196
197#define TCA_SET_OFF TCA_GRED_PARMS
198struct tc_gred_qopt 197struct tc_gred_qopt
199{ 198{
200 __u32 limit; /* HARD maximal queue length (bytes) 199 __u32 limit; /* HARD maximal queue length (bytes) */
201*/ 200 __u32 qth_min; /* Min average length threshold (bytes) */
202 __u32 qth_min; /* Min average length threshold (bytes) 201 __u32 qth_max; /* Max average length threshold (bytes) */
203*/ 202 __u32 DP; /* upto 2^32 DPs */
204 __u32 qth_max; /* Max average length threshold (bytes) 203 __u32 backlog;
205*/ 204 __u32 qave;
206 __u32 DP; /* upto 2^32 DPs */ 205 __u32 forced;
207 __u32 backlog; 206 __u32 early;
208 __u32 qave; 207 __u32 other;
209 __u32 forced; 208 __u32 pdrop;
210 __u32 early; 209 __u8 Wlog; /* log(W) */
211 __u32 other; 210 __u8 Plog; /* log(P_max/(qth_max-qth_min)) */
212 __u32 pdrop; 211 __u8 Scell_log; /* cell size for idle damping */
213 212 __u8 prio; /* prio of this VQ */
214 unsigned char Wlog; /* log(W) */ 213 __u32 packets;
215 unsigned char Plog; /* log(P_max/(qth_max-qth_min)) */ 214 __u32 bytesin;
216 unsigned char Scell_log; /* cell size for idle damping */
217 __u8 prio; /* prio of this VQ */
218 __u32 packets;
219 __u32 bytesin;
220}; 215};
216
221/* gred setup */ 217/* gred setup */
222struct tc_gred_sopt 218struct tc_gred_sopt
223{ 219{
224 __u32 DPs; 220 __u32 DPs;
225 __u32 def_DP; 221 __u32 def_DP;
226 __u8 grio; 222 __u8 grio;
227 __u8 pad1; 223 __u8 pad1;
228 __u16 pad2; 224 __u16 pad2;
229}; 225};
230 226
231/* HTB section */ 227/* HTB section */
diff --git a/net/sched/sch_gred.c b/net/sched/sch_gred.c
index 897e6df81b1f..1fb34be32f7c 100644
--- a/net/sched/sch_gred.c
+++ b/net/sched/sch_gred.c
@@ -15,50 +15,18 @@
15 * from Ren Liu 15 * from Ren Liu
16 * - More error checks 16 * - More error checks
17 * 17 *
18 * 18 * For all the glorious comments look at include/net/red.h
19 *
20 * For all the glorious comments look at Alexey's sch_red.c
21 */ 19 */
22 20
23#include <linux/config.h> 21#include <linux/config.h>
24#include <linux/module.h> 22#include <linux/module.h>
25#include <asm/uaccess.h>
26#include <asm/system.h>
27#include <linux/bitops.h>
28#include <linux/types.h> 23#include <linux/types.h>
29#include <linux/kernel.h> 24#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> 25#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> 26#include <linux/skbuff.h>
46#include <net/sock.h>
47#include <net/pkt_sched.h> 27#include <net/pkt_sched.h>
48#include <net/red.h> 28#include <net/red.h>
49 29
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
62#define GRED_DEF_PRIO (MAX_DPs / 2) 30#define GRED_DEF_PRIO (MAX_DPs / 2)
63#define GRED_VQ_MASK (MAX_DPs - 1) 31#define GRED_VQ_MASK (MAX_DPs - 1)
64 32
@@ -72,7 +40,7 @@ struct gred_sched_data
72 u32 bytesin; /* bytes seen on virtualQ so far*/ 40 u32 bytesin; /* bytes seen on virtualQ so far*/
73 u32 packetsin; /* packets seen on virtualQ so far*/ 41 u32 packetsin; /* packets seen on virtualQ so far*/
74 u32 backlog; /* bytes on the virtualQ */ 42 u32 backlog; /* bytes on the virtualQ */
75 u8 prio; /* the prio of this vq */ 43 u8 prio; /* the prio of this vq */
76 44
77 struct red_parms parms; 45 struct red_parms parms;
78 struct red_stats stats; 46 struct red_stats stats;
@@ -87,8 +55,8 @@ struct gred_sched
87{ 55{
88 struct gred_sched_data *tab[MAX_DPs]; 56 struct gred_sched_data *tab[MAX_DPs];
89 unsigned long flags; 57 unsigned long flags;
90 u32 DPs; 58 u32 DPs;
91 u32 def; 59 u32 def;
92 struct red_parms wred_set; 60 struct red_parms wred_set;
93}; 61};
94 62
@@ -172,13 +140,11 @@ static inline void gred_store_wred_set(struct gred_sched *table,
172 table->wred_set.qavg = q->parms.qavg; 140 table->wred_set.qavg = q->parms.qavg;
173} 141}
174 142
175static int 143static int gred_enqueue(struct sk_buff *skb, struct Qdisc* sch)
176gred_enqueue(struct sk_buff *skb, struct Qdisc* sch)
177{ 144{
178 struct gred_sched_data *q=NULL; 145 struct gred_sched_data *q=NULL;
179 struct gred_sched *t= qdisc_priv(sch); 146 struct gred_sched *t= qdisc_priv(sch);
180 unsigned long qavg = 0; 147 unsigned long qavg = 0;
181 int i=0;
182 u16 dp = tc_index_to_dp(skb); 148 u16 dp = tc_index_to_dp(skb);
183 149
184 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) { 150 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
@@ -200,26 +166,23 @@ gred_enqueue(struct sk_buff *skb, struct Qdisc* sch)
200 skb->tc_index = (skb->tc_index & ~GRED_VQ_MASK) | dp; 166 skb->tc_index = (skb->tc_index & ~GRED_VQ_MASK) | dp;
201 } 167 }
202 168
203 /* sum up all the qaves of prios <= to ours to get the new qave*/ 169 /* sum up all the qaves of prios <= to ours to get the new qave */
204 if (!gred_wred_mode(t) && gred_rio_mode(t)) { 170 if (!gred_wred_mode(t) && gred_rio_mode(t)) {
205 for (i=0;i<t->DPs;i++) { 171 int i;
206 if ((!t->tab[i]) || (i==q->DP)) 172
207 continue; 173 for (i = 0; i < t->DPs; i++) {
208 174 if (t->tab[i] && t->tab[i]->prio < q->prio &&
209 if (t->tab[i]->prio < q->prio &&
210 !red_is_idling(&t->tab[i]->parms)) 175 !red_is_idling(&t->tab[i]->parms))
211 qavg +=t->tab[i]->parms.qavg; 176 qavg +=t->tab[i]->parms.qavg;
212 } 177 }
213 178
214 } 179 }
215 180
216 q->packetsin++; 181 q->packetsin++;
217 q->bytesin+=skb->len; 182 q->bytesin += skb->len;
218 183
219 if (gred_wred_mode(t)) { 184 if (gred_wred_mode(t))
220 qavg = 0;
221 gred_load_wred_set(t, q); 185 gred_load_wred_set(t, q);
222 }
223 186
224 q->parms.qavg = red_calc_qavg(&q->parms, gred_backlog(t, q, sch)); 187 q->parms.qavg = red_calc_qavg(&q->parms, gred_backlog(t, q, sch));
225 188
@@ -258,8 +221,7 @@ congestion_drop:
258 return NET_XMIT_CN; 221 return NET_XMIT_CN;
259} 222}
260 223
261static int 224static int gred_requeue(struct sk_buff *skb, struct Qdisc* sch)
262gred_requeue(struct sk_buff *skb, struct Qdisc* sch)
263{ 225{
264 struct gred_sched *t = qdisc_priv(sch); 226 struct gred_sched *t = qdisc_priv(sch);
265 struct gred_sched_data *q; 227 struct gred_sched_data *q;
@@ -279,16 +241,15 @@ gred_requeue(struct sk_buff *skb, struct Qdisc* sch)
279 return qdisc_requeue(skb, sch); 241 return qdisc_requeue(skb, sch);
280} 242}
281 243
282static struct sk_buff * 244static struct sk_buff *gred_dequeue(struct Qdisc* sch)
283gred_dequeue(struct Qdisc* sch)
284{ 245{
285 struct sk_buff *skb; 246 struct sk_buff *skb;
286 struct gred_sched_data *q; 247 struct gred_sched *t = qdisc_priv(sch);
287 struct gred_sched *t= qdisc_priv(sch);
288 248
289 skb = qdisc_dequeue_head(sch); 249 skb = qdisc_dequeue_head(sch);
290 250
291 if (skb) { 251 if (skb) {
252 struct gred_sched_data *q;
292 u16 dp = tc_index_to_dp(skb); 253 u16 dp = tc_index_to_dp(skb);
293 254
294 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) { 255 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
@@ -315,13 +276,12 @@ gred_dequeue(struct Qdisc* sch)
315static unsigned int gred_drop(struct Qdisc* sch) 276static unsigned int gred_drop(struct Qdisc* sch)
316{ 277{
317 struct sk_buff *skb; 278 struct sk_buff *skb;
318 279 struct gred_sched *t = qdisc_priv(sch);
319 struct gred_sched_data *q;
320 struct gred_sched *t= qdisc_priv(sch);
321 280
322 skb = qdisc_dequeue_tail(sch); 281 skb = qdisc_dequeue_tail(sch);
323 if (skb) { 282 if (skb) {
324 unsigned int len = skb->len; 283 unsigned int len = skb->len;
284 struct gred_sched_data *q;
325 u16 dp = tc_index_to_dp(skb); 285 u16 dp = tc_index_to_dp(skb);
326 286
327 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) { 287 if (dp >= t->DPs || (q = t->tab[dp]) == NULL) {
@@ -351,15 +311,16 @@ static unsigned int gred_drop(struct Qdisc* sch)
351static void gred_reset(struct Qdisc* sch) 311static void gred_reset(struct Qdisc* sch)
352{ 312{
353 int i; 313 int i;
354 struct gred_sched_data *q; 314 struct gred_sched *t = qdisc_priv(sch);
355 struct gred_sched *t= qdisc_priv(sch);
356 315
357 qdisc_reset_queue(sch); 316 qdisc_reset_queue(sch);
358 317
359 for (i=0;i<t->DPs;i++) { 318 for (i = 0; i < t->DPs; i++) {
360 q= t->tab[i]; 319 struct gred_sched_data *q = t->tab[i];
361 if (!q) 320
362 continue; 321 if (!q)
322 continue;
323
363 red_restart(&q->parms); 324 red_restart(&q->parms);
364 q->backlog = 0; 325 q->backlog = 0;
365 } 326 }
@@ -590,15 +551,13 @@ static void gred_destroy(struct Qdisc *sch)
590 struct gred_sched *table = qdisc_priv(sch); 551 struct gred_sched *table = qdisc_priv(sch);
591 int i; 552 int i;
592 553
593 for (i = 0;i < table->DPs; i++) { 554 for (i = 0; i < table->DPs; i++) {
594 if (table->tab[i]) 555 if (table->tab[i])
595 gred_destroy_vq(table->tab[i]); 556 gred_destroy_vq(table->tab[i]);
596 } 557 }
597} 558}
598 559
599static struct Qdisc_ops gred_qdisc_ops = { 560static struct Qdisc_ops gred_qdisc_ops = {
600 .next = NULL,
601 .cl_ops = NULL,
602 .id = "gred", 561 .id = "gred",
603 .priv_size = sizeof(struct gred_sched), 562 .priv_size = sizeof(struct gred_sched),
604 .enqueue = gred_enqueue, 563 .enqueue = gred_enqueue,
@@ -617,10 +576,13 @@ static int __init gred_module_init(void)
617{ 576{
618 return register_qdisc(&gred_qdisc_ops); 577 return register_qdisc(&gred_qdisc_ops);
619} 578}
620static void __exit gred_module_exit(void) 579
580static void __exit gred_module_exit(void)
621{ 581{
622 unregister_qdisc(&gred_qdisc_ops); 582 unregister_qdisc(&gred_qdisc_ops);
623} 583}
584
624module_init(gred_module_init) 585module_init(gred_module_init)
625module_exit(gred_module_exit) 586module_exit(gred_module_exit)
587
626MODULE_LICENSE("GPL"); 588MODULE_LICENSE("GPL");