aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/keyhandler.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-09-22 15:50:59 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-09-22 15:50:59 +0100
commit1e98b38411bc0c022075c2cc3b1c3c59a3f4ffc2 (patch)
treee2f0faf3e428ef3d5e436895f163c5ac234ed494 /xen/common/keyhandler.c
parent331fc9de533d51530d3b67bbc70a5b6c942112f6 (diff)
downloadxen-1e98b38411bc0c022075c2cc3b1c3c59a3f4ffc2.tar.gz
xen-1e98b38411bc0c022075c2cc3b1c3c59a3f4ffc2.tar.bz2
xen-1e98b38411bc0c022075c2cc3b1c3c59a3f4ffc2.zip
Add debug key 'e' for event channel information
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Diffstat (limited to 'xen/common/keyhandler.c')
-rw-r--r--xen/common/keyhandler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/common/keyhandler.c b/xen/common/keyhandler.c
index d478db8ad3..e24a6d335f 100644
--- a/xen/common/keyhandler.c
+++ b/xen/common/keyhandler.c
@@ -204,11 +204,11 @@ static void dump_domains(unsigned char key)
printk("VCPU information and callbacks for domain %u:\n",
d->domain_id);
for_each_vcpu ( d, v ) {
- printk(" VCPU%d: CPU%d [has=%c] flags=%lx "
+ printk(" VCPU%d: CPU%d [has=%c] flags=%lx poll=%d "
"upcall_pend = %02x, upcall_mask = %02x ",
v->vcpu_id, v->processor,
v->is_running ? 'T':'F',
- v->pause_flags,
+ v->pause_flags, v->poll_evtchn,
vcpu_info(v, evtchn_upcall_pending),
vcpu_info(v, evtchn_upcall_mask));
cpuset_print(tmpstr, sizeof(tmpstr), v->vcpu_dirty_cpumask);