From: Amnon Aaronsohn The PRIO queuing discipline currently initializes only the bands that appear in the priomap. It should instead initialize all the configured bands. Signed-off-by: Amnon Aaronsohn Signed-off-by: Andrew Morton --- net/sched/sch_prio.c | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff -puN net/sched/sch_prio.c~net-fix-prio-qdisc-bands-init net/sched/sch_prio.c --- devel/net/sched/sch_prio.c~net-fix-prio-qdisc-bands-init 2006-01-10 03:37:14.000000000 -0800 +++ devel-akpm/net/sched/sch_prio.c 2006-01-10 03:37:14.000000000 -0800 @@ -228,14 +228,13 @@ static int prio_tune(struct Qdisc *sch, } sch_tree_unlock(sch); - for (i=0; i<=TC_PRIO_MAX; i++) { - int band = q->prio2band[i]; - if (q->queues[band] == &noop_qdisc) { + for (i=0; ibands; i++) { + if (q->queues[i] == &noop_qdisc) { struct Qdisc *child; child = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops); if (child) { sch_tree_lock(sch); - child = xchg(&q->queues[band], child); + child = xchg(&q->queues[i], child); if (child != &noop_qdisc) qdisc_destroy(child); _