
riel at surriel
Apr 5, 2005, 10:47 AM
Views: 14
Permalink
|
|
Extra diagnostics in timer ISR handler.
|
|
ChangeSet 1.1275.1.1, 2005/04/05 18:47:39+01:00, kaf24 [at] firebug Extra diagnostics in timer ISR handler. Signed-off-by: Keir Fraser <keir [at] xensource> time.c | 3 +++ 1 files changed, 3 insertions(+) diff -Nru a/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/time.c b/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/time.c --- a/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/time.c 2005-04-05 14:03:32 -04:00 +++ b/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/time.c 2005-04-05 14:03:32 -04:00 @@ -410,6 +410,9 @@ ((s64)cur_timer->get_offset() * (s64)NSEC_PER_USEC), processed_system_time, per_cpu(processed_system_time, cpu)); + for (cpu = 0; cpu < num_online_cpus(); cpu++) + printk(" %d: %lld\n", cpu, + per_cpu(processed_system_time, cpu)); return; } _______________________________________________ Xen-changelog mailing list Xen-changelog [at] lists http://lists.xensource.com/xen-changelog
|