[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] sched / cpupool: dump the actual value of NOW()
commit fe35f0c482442e8d180b359d0414c52bdda355f9 Author: Dario Faggioli <dario.faggioli@xxxxxxxxxx> AuthorDate: Mon Oct 12 16:01:22 2015 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Mon Oct 12 16:01:22 2015 +0200 sched / cpupool: dump the actual value of NOW() rather than its hexadecimal representation. This makes it easier to compare the actual system time with other times being printed out (e.g., deadlines in RTDS). Signed-off-by: Dario Faggioli <dario.faggioli@xxxxxxxxxx> Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Juergen Gross <jgross@xxxxxxxx> --- xen/common/cpupool.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/xen/common/cpupool.c b/xen/common/cpupool.c index 69b984c..e79850b 100644 --- a/xen/common/cpupool.c +++ b/xen/common/cpupool.c @@ -744,7 +744,7 @@ void dump_runq(unsigned char key) printk("sched_smt_power_savings: %s\n", sched_smt_power_savings? "enabled":"disabled"); - printk("NOW=0x%08X%08X\n", (u32)(now>>32), (u32)now); + printk("NOW=%"PRI_stime"\n", now); print_cpumap("Online Cpus", &cpu_online_map); if ( !cpumask_empty(&cpupool_free_cpus) ) -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |