[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] timer: Print timer fn when dump timer queue
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1227697886 0 # Node ID 32aecede46269b640f765e08c17c753568b3d813 # Parent 1975e33b79f18207454bf0366f90712123f14975 timer: Print timer fn when dump timer queue Print timer fn when dump timer queue, which would be useful to understand type of the timer. Signed-off-by Kevin Tian <kevin.tian@xxxxxxxxx> --- xen/common/timer.c | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff -r 1975e33b79f1 -r 32aecede4626 xen/common/timer.c --- a/xen/common/timer.c Wed Nov 26 11:08:45 2008 +0000 +++ b/xen/common/timer.c Wed Nov 26 11:11:26 2008 +0000 @@ -494,12 +494,14 @@ static void dump_timerq(unsigned char ke for ( j = 1; j <= GET_HEAP_SIZE(ts->heap); j++ ) { t = ts->heap[j]; - printk (" %d : %p ex=0x%08X%08X %p\n", - j, t, (u32)(t->expires>>32), (u32)t->expires, t->data); + printk (" %d : %p ex=0x%08X%08X %p %p\n", + j, t, (u32)(t->expires>>32), (u32)t->expires, + t->data, t->function); } for ( t = ts->list, j = 0; t != NULL; t = t->list_next, j++ ) - printk (" L%d : %p ex=0x%08X%08X %p\n", - j, t, (u32)(t->expires>>32), (u32)t->expires, t->data); + printk (" L%d : %p ex=0x%08X%08X %p %p\n", + j, t, (u32)(t->expires>>32), (u32)t->expires, + t->data, t->function); spin_unlock_irqrestore(&ts->lock, flags); printk("\n"); } _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |