# This is a BitKeeper generated diff -Nru style patch. # # ChangeSet # 2004/11/04 20:22:38+01:00 kaber@coreworks.de # [PKT_SCHED]: gact: convert jiffie values to USER_HZ when dumping # # Signed-off-by: Patrick McHardy # # net/sched/gact.c # 2004/11/04 20:22:32+01:00 kaber@coreworks.de +3 -3 # [PKT_SCHED]: gact: convert jiffie values to USER_HZ when dumping # # Signed-off-by: Patrick McHardy # diff -Nru a/net/sched/gact.c b/net/sched/gact.c --- a/net/sched/gact.c 2004-11-05 00:18:57 +01:00 +++ b/net/sched/gact.c 2004-11-05 00:18:57 +01:00 @@ -203,9 +203,9 @@ RTA_PUT(skb, TCA_GACT_PROB, sizeof (p_opt), &p_opt); } #endif - t.install = jiffies - p->tm.install; - t.lastuse = jiffies - p->tm.lastuse; - t.expires = p->tm.expires; + t.install = jiffies_to_clock_t(jiffies - p->tm.install); + t.lastuse = jiffies_to_clock_t(jiffies - p->tm.lastuse); + t.expires = jiffies_to_clock_t(p->tm.expires); RTA_PUT(skb, TCA_GACT_TM, sizeof (t), &t); return skb->len;