提交 db4315d6 编写于 作者: P Pavel Machek 提交者: Thomas Gleixner

timer_list: print relative expiry time signed

Relative expiry time can get negative, so it should be signed.
Signed-off-by: NPavel Machek <Pavel@suse.cz>
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
上级 1309d4e6
......@@ -65,9 +65,9 @@ print_timer(struct seq_file *m, struct hrtimer *timer, int idx, u64 now)
SEQ_printf(m, ", %s/%d", tmp, timer->start_pid);
#endif
SEQ_printf(m, "\n");
SEQ_printf(m, " # expires at %Lu nsecs [in %Lu nsecs]\n",
SEQ_printf(m, " # expires at %Lu nsecs [in %Ld nsecs]\n",
(unsigned long long)ktime_to_ns(timer->expires),
(unsigned long long)(ktime_to_ns(timer->expires) - now));
(long long)(ktime_to_ns(timer->expires) - now));
}
static void
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册