提交 dd914b40 编写于 作者: A Amnon Aaronsohn 提交者: David S. Miller

[PKT_SCHED] sch_prio: fix qdisc bands init

Currently when PRIO is configured to use N bands, it lets the packets be
directed to any of the bands 0..N-1. However, PRIO attaches a fifo qdisc
only to the bands that appear in the priomap; the rest of the N bands
remain with a noop qdisc attached. This patch changes PRIO's behavior so
that it attaches a fifo qdisc to all of the N bands.
Signed-off-by: NAmnon Aaronsohn <bla@cs.huji.ac.il>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 9343e79a
...@@ -228,14 +228,13 @@ static int prio_tune(struct Qdisc *sch, struct rtattr *opt) ...@@ -228,14 +228,13 @@ static int prio_tune(struct Qdisc *sch, struct rtattr *opt)
} }
sch_tree_unlock(sch); sch_tree_unlock(sch);
for (i=0; i<=TC_PRIO_MAX; i++) { for (i=0; i<q->bands; i++) {
int band = q->prio2band[i]; if (q->queues[i] == &noop_qdisc) {
if (q->queues[band] == &noop_qdisc) {
struct Qdisc *child; struct Qdisc *child;
child = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops); child = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops);
if (child) { if (child) {
sch_tree_lock(sch); sch_tree_lock(sch);
child = xchg(&q->queues[band], child); child = xchg(&q->queues[i], child);
if (child != &noop_qdisc) if (child != &noop_qdisc)
qdisc_destroy(child); qdisc_destroy(child);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册