aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/keyhandler.c
diff options
context:
space:
mode:
authorAndres Lagar-Cavilla <andres@lagarcavilla.org>2012-01-26 13:21:27 +0000
committerAndres Lagar-Cavilla <andres@lagarcavilla.org>2012-01-26 13:21:27 +0000
commit06af8f9435323198c4447efea1043e6f90647a3d (patch)
tree9929cb49e6ca56651caf92bd78a253f4a0e58d41 /xen/common/keyhandler.c
parent8e98287101d630a19d694fdfa01c5f716d96470c (diff)
downloadxen-06af8f9435323198c4447efea1043e6f90647a3d.tar.gz
xen-06af8f9435323198c4447efea1043e6f90647a3d.tar.bz2
xen-06af8f9435323198c4447efea1043e6f90647a3d.zip
x86/mm: Output domain count of paged pages in console
Signed-off-by: Andres Lagar-Cavilla <andres@lagarcavilla.org> Acked-by: Olaf Hering <olaf@aepfle.de> Acked-by: Tim Deegan <tim@xen.org> Committed-by: Tim Deegan <tim@xen.org>
Diffstat (limited to 'xen/common/keyhandler.c')
-rw-r--r--xen/common/keyhandler.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/xen/common/keyhandler.c b/xen/common/keyhandler.c
index 16a9f5e311..2c5c230165 100644
--- a/xen/common/keyhandler.c
+++ b/xen/common/keyhandler.c
@@ -250,8 +250,10 @@ static void dump_domains(unsigned char key)
printk(" refcnt=%d dying=%d pause_count=%d\n",
atomic_read(&d->refcnt), d->is_dying,
atomic_read(&d->pause_count));
- printk(" nr_pages=%d xenheap_pages=%d shared_pages=%u dirty_cpus=%s max_pages=%u\n",
- d->tot_pages, d->xenheap_pages, atomic_read(&d->shr_pages), tmpstr, d->max_pages);
+ printk(" nr_pages=%d xenheap_pages=%d shared_pages=%u paged_pages=%u "
+ "dirty_cpus=%s max_pages=%u\n", d->tot_pages, d->xenheap_pages,
+ atomic_read(&d->shr_pages), atomic_read(&d->paged_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],