Commit b5dea05a authored by Patrick McHardy's avatar Patrick McHardy Committed by David S. Miller

[PKT_SCHED]: mirred: Convert jiffies values to USER_HZ when dumping

Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 64d9b132
...@@ -257,9 +257,9 @@ tcf_mirred_dump(struct sk_buff *skb, struct tc_action *a,int bind, int ref) ...@@ -257,9 +257,9 @@ tcf_mirred_dump(struct sk_buff *skb, struct tc_action *a,int bind, int ref)
opt.ifindex = p->ifindex; opt.ifindex = p->ifindex;
DPRINTK(" tcf_mirred_dump index %d action %d eaction %d ifndex %d\n",p->index,p->action,p->eaction,p->ifindex); DPRINTK(" tcf_mirred_dump index %d action %d eaction %d ifndex %d\n",p->index,p->action,p->eaction,p->ifindex);
RTA_PUT(skb, TCA_MIRRED_PARMS, sizeof (opt), &opt); RTA_PUT(skb, TCA_MIRRED_PARMS, sizeof (opt), &opt);
t.install = jiffies - p->tm.install; t.install = jiffies_to_clock_t(jiffies - p->tm.install);
t.lastuse = jiffies - p->tm.lastuse; t.lastuse = jiffies_to_clock_t(jiffies - p->tm.lastuse);
t.expires = p->tm.expires; t.expires = jiffies_to_clock_t(p->tm.expires);
RTA_PUT(skb, TCA_MIRRED_TM, sizeof (t), &t); RTA_PUT(skb, TCA_MIRRED_TM, sizeof (t), &t);
return skb->len; return skb->len;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment