diff options
author | Patrick McHardy <kaber@trash.net> | 2007-03-16 15:31:28 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:26:16 -0400 |
commit | bb239acf5679ee1936f6b1b034ad260c4fec89c8 (patch) | |
tree | 3c52cd966844e708ac0c4da5a08956a943be6bd7 | |
parent | 4361cb17f0df5491fe6e2c3ae1defc98e9a64a79 (diff) |
[NET_SCHED]: sch_cbq: fix watchdog scheduled too late
q->now is increased during dequeue and doesn't contain the current time
afterwards, resulting in a too large timeout value for the qdisc watchdog.
Use "now" instead, which still contains the current time.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
-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 0491fad97c0a..d83414d828d8 100644 --- a/net/sched/sch_cbq.c +++ b/net/sched/sch_cbq.c | |||
@@ -1070,7 +1070,7 @@ cbq_dequeue(struct Qdisc *sch) | |||
1070 | sch->qstats.overlimits++; | 1070 | sch->qstats.overlimits++; |
1071 | if (q->wd_expires) | 1071 | if (q->wd_expires) |
1072 | qdisc_watchdog_schedule(&q->watchdog, | 1072 | qdisc_watchdog_schedule(&q->watchdog, |
1073 | q->now + q->wd_expires); | 1073 | now + q->wd_expires); |
1074 | } | 1074 | } |
1075 | return NULL; | 1075 | return NULL; |
1076 | } | 1076 | } |