diff options
author | David S. Miller <davem@davemloft.net> | 2008-08-18 20:51:18 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-08-18 21:05:56 -0700 |
commit | 8608db031b4d2932d645709e2cfe8fbcd91a7305 (patch) | |
tree | 01b2e63f9f28dddcb5c0dd72e9c8c5b73c866685 /net/sched/sch_cbq.c | |
parent | 69747650c814a8a79fef412c7416adf823293a3e (diff) | |
download | linux-8608db031b4d2932d645709e2cfe8fbcd91a7305.tar.bz2 |
pkt_sched: Never schedule non-root qdiscs.
Based upon initial discovery and patch by Jarek Poplawski.
The qdisc watchdogs can be attached to any qdisc, not just the root,
so make sure we schedule the correct one.
CBQ has a similar bug.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_cbq.c')
-rw-r--r-- | net/sched/sch_cbq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/sch_cbq.c b/net/sched/sch_cbq.c index 4e261ce62f48..47ef492c4ff4 100644 --- a/net/sched/sch_cbq.c +++ b/net/sched/sch_cbq.c @@ -654,7 +654,7 @@ static enum hrtimer_restart cbq_undelay(struct hrtimer *timer) } sch->flags &= ~TCQ_F_THROTTLED; - __netif_schedule(sch); + __netif_schedule(qdisc_root(sch)); return HRTIMER_NORESTART; } |