The patch titled sch_htb: fix event cache time calculation has been added to the -mm tree. Its filename is sch_htb-fix-event-cache-time-calculation.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: sch_htb: fix event cache time calculation From: Patrick McHardy <kaber@xxxxxxxxx> The event cache time must be an absolute value, when no event exists it is incorrectly set to 1s instead of 1s in the future. Should fix excessive load reported by Anant Nitya <kernel@xxxxxxxxxxxxxx>. Signed-off-by: Patrick McHardy <kaber@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/sched/sch_htb.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff -puN net/sched/sch_htb.c~sch_htb-fix-event-cache-time-calculation net/sched/sch_htb.c --- a/net/sched/sch_htb.c~sch_htb-fix-event-cache-time-calculation +++ a/net/sched/sch_htb.c @@ -976,8 +976,9 @@ static struct sk_buff *htb_dequeue(struc if (q->now >= q->near_ev_cache[level]) { event = htb_do_events(q, level); - q->near_ev_cache[level] = event ? event : - PSCHED_TICKS_PER_SEC; + if (!event) + event = q->now + PSCHED_TICKS_PER_SEC; + q->near_ev_cache[level] = event; } else event = q->near_ev_cache[level]; _ Patches currently in -mm which might be from kaber@xxxxxxxxx are origin.patch networking-fix-sending-netlink-message-when-replace-route.patch make-some-netfilter-related-proc-files-use-seq_list_xxx.patch sch_htb-fix-event-cache-time-calculation.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html