Commit 7c429a26 authored by Hideaki Yoshifuji's avatar Hideaki Yoshifuji

[IPV4]: Fix jiffies procfs output in multicast code.

parent 3a62a5c7
......@@ -2215,7 +2215,7 @@ static int igmp_mc_seq_show(struct seq_file *seq, void *v)
seq_printf(seq,
"\t\t\t\t%08lX %5d %d:%08lX\t\t%d\n",
im->multiaddr, im->users,
im->tm_running, im->timer.expires-jiffies, im->reporter);
im->tm_running, jiffies_to_clock_t(im->timer.expires-jiffies), im->reporter);
}
return 0;
}
......
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