|
|
@@ -287,23 +287,6 @@ static inline void timer_list_header(struct seq_file *m, u64 now)
|
|
|
SEQ_printf(m, "\n");
|
|
|
}
|
|
|
|
|
|
-static int timer_list_show(struct seq_file *m, void *v)
|
|
|
-{
|
|
|
- struct timer_list_iter *iter = v;
|
|
|
-
|
|
|
- if (iter->cpu == -1 && !iter->second_pass)
|
|
|
- timer_list_header(m, iter->now);
|
|
|
- else if (!iter->second_pass)
|
|
|
- print_cpu(m, iter->cpu, iter->now);
|
|
|
-#ifdef CONFIG_GENERIC_CLOCKEVENTS
|
|
|
- else if (iter->cpu == -1 && iter->second_pass)
|
|
|
- timer_list_show_tickdevices_header(m);
|
|
|
- else
|
|
|
- print_tickdevice(m, tick_get_device(iter->cpu), iter->cpu);
|
|
|
-#endif
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
void sysrq_timer_list_show(void)
|
|
|
{
|
|
|
u64 now = ktime_to_ns(ktime_get());
|
|
|
@@ -322,6 +305,24 @@ void sysrq_timer_list_show(void)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_PROC_FS
|
|
|
+static int timer_list_show(struct seq_file *m, void *v)
|
|
|
+{
|
|
|
+ struct timer_list_iter *iter = v;
|
|
|
+
|
|
|
+ if (iter->cpu == -1 && !iter->second_pass)
|
|
|
+ timer_list_header(m, iter->now);
|
|
|
+ else if (!iter->second_pass)
|
|
|
+ print_cpu(m, iter->cpu, iter->now);
|
|
|
+#ifdef CONFIG_GENERIC_CLOCKEVENTS
|
|
|
+ else if (iter->cpu == -1 && iter->second_pass)
|
|
|
+ timer_list_show_tickdevices_header(m);
|
|
|
+ else
|
|
|
+ print_tickdevice(m, tick_get_device(iter->cpu), iter->cpu);
|
|
|
+#endif
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
static void *move_iter(struct timer_list_iter *iter, loff_t offset)
|
|
|
{
|
|
|
for (; offset; offset--) {
|
|
|
@@ -381,3 +382,4 @@ static int __init init_timer_list_procfs(void)
|
|
|
return 0;
|
|
|
}
|
|
|
__initcall(init_timer_list_procfs);
|
|
|
+#endif
|