debuggers.hg
changeset 20976:0e8557c6a47a
Dump full vCPU polling mask from 'e' key handler
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Thu Feb 11 21:14:12 2010 +0000 (2010-02-11) |
parents | bd0d6ec8caaa |
children | e857cd5fa708 |
files | xen/common/event_channel.c |
line diff
1.1 --- a/xen/common/event_channel.c Thu Feb 11 21:08:06 2010 +0000 1.2 +++ b/xen/common/event_channel.c Thu Feb 11 21:14:12 2010 +0000 1.3 @@ -1068,7 +1068,10 @@ static void domain_dump_evtchn_info(stru 1.4 { 1.5 unsigned int port; 1.6 1.7 - printk("Domain %d polling vCPUs: %08lx\n", d->domain_id, d->poll_mask[0]); 1.8 + bitmap_scnlistprintf(keyhandler_scratch, sizeof(keyhandler_scratch), 1.9 + d->poll_mask, d->max_vcpus); 1.10 + printk("Domain %d polling vCPUs: {%s}\n", 1.11 + d->domain_id, keyhandler_scratch); 1.12 1.13 if ( !spin_trylock(&d->event_lock) ) 1.14 return;