From a57cd292c214213e6e89605b68c884c6c253f15c Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 11 Feb 2010 21:14:12 +0000 Subject: Dump full vCPU polling mask from 'e' key handler Signed-off-by: Jan Beulich Signed-off-by: Keir Fraser --- xen/common/event_channel.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'xen/common/event_channel.c') 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; -- cgit v1.2.3