summaryrefslogtreecommitdiffstats
path: root/kernel/time/timer_list.c
diff options
context:
space:
mode:
authorThomas Gleixner2015-04-14 23:08:34 +0200
committerThomas Gleixner2015-04-22 17:06:49 +0200
commita6ffebce7f89f6f97cc22838a5d4383b15d6774f (patch)
treef739fa1d1501f25b883c21042ebe73aeba80a628 /kernel/time/timer_list.c
parenthrtimer: Get rid of hrtimer_get_res() (diff)
downloadkernel-qcow2-linux-a6ffebce7f89f6f97cc22838a5d4383b15d6774f.tar.gz
kernel-qcow2-linux-a6ffebce7f89f6f97cc22838a5d4383b15d6774f.tar.xz
kernel-qcow2-linux-a6ffebce7f89f6f97cc22838a5d4383b15d6774f.zip
hrtimer: Make the statistics fields smaller
No point in having usigned long for /proc/timer_list statistics. Make them unsigned int. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Peter Zijlstra <peterz@infradead.org> Cc: Preeti U Murthy <preeti@linux.vnet.ibm.com> Cc: Viresh Kumar <viresh.kumar@linaro.org> Cc: Marcelo Tosatti <mtosatti@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Link: http://lkml.kernel.org/r/20150414203500.959773467@linutronix.de Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/time/timer_list.c')
-rw-r--r--kernel/time/timer_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/timer_list.c b/kernel/time/timer_list.c
index bdd5e987f115..6232fc536185 100644
--- a/kernel/time/timer_list.c
+++ b/kernel/time/timer_list.c
@@ -165,7 +165,7 @@ static void print_cpu(struct seq_file *m, int cpu, u64 now)
P(nr_events);
P(nr_retries);
P(nr_hangs);
- P_ns(max_hang_time);
+ P(max_hang_time);
#endif
#undef P
#undef P_ns