aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/keyhandler.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-01-08 16:53:15 +0000
committerKeir Fraser <keir.fraser@citrix.com>2009-01-08 16:53:15 +0000
commitda510a16e2144f3179c65448a05eaf3930421692 (patch)
tree2e8b0cf9fc7f7d50c73dfb31cde08fafcd83d1e0 /xen/common/keyhandler.c
parentad8b20cc859c75559f0ecbd699d1be8c34e50acd (diff)
downloadxen-da510a16e2144f3179c65448a05eaf3930421692.tar.gz
xen-da510a16e2144f3179c65448a05eaf3930421692.tar.bz2
xen-da510a16e2144f3179c65448a05eaf3930421692.zip
Print domain max_pages in 'q' debug output.
Signed-off-by: Keir Fraser <keir.fraser@citrix.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 e13698efdd..8118854eca 100644
--- a/xen/common/keyhandler.c
+++ b/xen/common/keyhandler.c
@@ -184,9 +184,9 @@ static void dump_domains(unsigned char key)
printk("General information for domain %u:\n", d->domain_id);
cpuset_print(tmpstr, sizeof(tmpstr), d->domain_dirty_cpumask);
printk(" refcnt=%d dying=%d nr_pages=%d xenheap_pages=%d "
- "dirty_cpus=%s\n",
+ "dirty_cpus=%s max_pages=%u\n",
atomic_read(&d->refcnt), d->is_dying,
- d->tot_pages, d->xenheap_pages, tmpstr);
+ d->tot_pages, d->xenheap_pages, tmpstr, d->max_pages);
printk(" handle=%02x%02x%02x%02x-%02x%02x-%02x%02x-"
"%02x%02x-%02x%02x%02x%02x%02x%02x vm_assist=%08lx\n",
d->handle[ 0], d->handle[ 1], d->handle[ 2], d->handle[ 3],