direct-io.hg
changeset 4487:80c93f1d00a8
bitkeeper revision 1.1274.2.1 (4252cf3bEQ_2wT1E4dNwi63SKyww2A)
Extra diagnostics in timer ISR handler.
Signed-off-by: Keir Fraser <keir@xensource.com>
Extra diagnostics in timer ISR handler.
Signed-off-by: Keir Fraser <keir@xensource.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Tue Apr 05 17:47:39 2005 +0000 (2005-04-05) |
parents | 3a76f49439ae |
children | f0790be67b5f |
files | linux-2.6.11-xen-sparse/arch/xen/i386/kernel/time.c |
line diff
1.1 --- a/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/time.c Tue Apr 05 16:55:50 2005 +0000 1.2 +++ b/linux-2.6.11-xen-sparse/arch/xen/i386/kernel/time.c Tue Apr 05 17:47:39 2005 +0000 1.3 @@ -410,6 +410,9 @@ static inline void do_timer_interrupt(in 1.4 ((s64)cur_timer->get_offset() * (s64)NSEC_PER_USEC), 1.5 processed_system_time, 1.6 per_cpu(processed_system_time, cpu)); 1.7 + for (cpu = 0; cpu < num_online_cpus(); cpu++) 1.8 + printk(" %d: %lld\n", cpu, 1.9 + per_cpu(processed_system_time, cpu)); 1.10 return; 1.11 } 1.12