aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2005-11-05 15:14:24 -0500
committerThomas Graf <tgr@axs.localdomain>2005-11-05 16:02:28 -0500
commit6214e653cc578947bf83d6766339a18a41c5b923 (patch)
tree406c86bb93e7ec472e7174df2e816633cecb9978 /net
parent7051703b990ec40bdf192ec7c87ffafd7011c640 (diff)
[PKT_SCHED]: GRED: Remove auto-creation of default VQ
Since we are no longer depending on the default VQ to be always allocated we can leave it up to the user to actually create it. This gives the user the ability to leave it out on purpose and enqueue packets directly to the device without applying the RED algorithm. Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Diffstat (limited to 'net')
-rw-r--r--net/sched/sch_gred.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/net/sched/sch_gred.c b/net/sched/sch_gred.c
index a545532be2c4..897e6df81b1f 100644
--- a/net/sched/sch_gred.c
+++ b/net/sched/sch_gred.c
@@ -492,15 +492,6 @@ static int gred_change(struct Qdisc *sch, struct rtattr *opt)
492 if (err < 0) 492 if (err < 0)
493 goto errout_locked; 493 goto errout_locked;
494 494
495 if (table->tab[table->def] == NULL) {
496 if (gred_rio_mode(table))
497 prio = table->tab[ctl->DP]->prio;
498
499 err = gred_change_vq(sch, table->def, ctl, prio, stab);
500 if (err < 0)
501 goto errout_locked;
502 }
503
504 if (gred_rio_mode(table)) { 495 if (gred_rio_mode(table)) {
505 gred_disable_wred_mode(table); 496 gred_disable_wred_mode(table);
506 if (gred_wred_mode_check(sch)) 497 if (gred_wred_mode_check(sch))