aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/event_channel.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-02-11 21:14:12 +0000
committerKeir Fraser <keir.fraser@citrix.com>2010-02-11 21:14:12 +0000
commita57cd292c214213e6e89605b68c884c6c253f15c (patch)
tree58857553a1d89d9f2a8d777bdad10dc3282da696 /xen/common/event_channel.c
parentc23d905c387ff80a7409d4f66cf91b02fa4297f0 (diff)
downloadxen-a57cd292c214213e6e89605b68c884c6c253f15c.tar.gz
xen-a57cd292c214213e6e89605b68c884c6c253f15c.tar.bz2
xen-a57cd292c214213e6e89605b68c884c6c253f15c.zip
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>
Diffstat (limited to 'xen/common/event_channel.c')
-rw-r--r--xen/common/event_channel.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/xen/common/event_channel.c b/xen/common/event_channel.c
index 29c515cf0c..b6a15d68a4 100644
--- a/xen/common/event_channel.c
+++ b/xen/common/event_channel.c
@@ -1068,7 +1068,10 @@ static void domain_dump_evtchn_info(struct domain *d)
{
unsigned int port;
- printk("Domain %d polling vCPUs: %08lx\n", d->domain_id, d->poll_mask[0]);
+ bitmap_scnlistprintf(keyhandler_scratch, sizeof(keyhandler_scratch),
+ d->poll_mask, d->max_vcpus);
+ printk("Domain %d polling vCPUs: {%s}\n",
+ d->domain_id, keyhandler_scratch);
if ( !spin_trylock(&d->event_lock) )
return;