|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH] small adjustment to (dying) domain info printing
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx>
Index: 2008-10-27/xen/arch/x86/domain.c
===================================================================
--- 2008-10-27.orig/xen/arch/x86/domain.c 2008-10-27 11:11:36.000000000
+0100
+++ 2008-10-27/xen/arch/x86/domain.c 2008-10-27 11:11:42.000000000 +0100
@@ -135,7 +135,7 @@ void dump_pageframe_info(struct domain *
printk("Memory pages belonging to domain %u:\n", d->domain_id);
- if ( d->tot_pages >= 10 )
+ if ( d->tot_pages >= 10 && d->is_dying < DOMDYING_dead )
{
printk(" DomPage list too long to display\n");
}
Index: 2008-10-27/xen/common/keyhandler.c
===================================================================
--- 2008-10-27.orig/xen/common/keyhandler.c 2008-09-24 10:23:53.000000000
+0200
+++ 2008-10-27/xen/common/keyhandler.c 2008-10-27 11:11:42.000000000 +0100
@@ -183,9 +183,9 @@ static void dump_domains(unsigned char k
{
printk("General information for domain %u:\n", d->domain_id);
cpuset_print(tmpstr, sizeof(tmpstr), d->domain_dirty_cpumask);
- printk(" refcnt=%d nr_pages=%d xenheap_pages=%d "
+ printk(" refcnt=%d dying=%d nr_pages=%d xenheap_pages=%d "
"dirty_cpus=%s\n",
- atomic_read(&d->refcnt),
+ atomic_read(&d->refcnt), d->is_dying,
d->tot_pages, d->xenheap_pages, tmpstr);
printk(" handle=%02x%02x%02x%02x-%02x%02x-%02x%02x-"
"%02x%02x-%02x%02x%02x%02x%02x%02x vm_assist=%08lx\n",
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-devel] [PATCH] small adjustment to (dying) domain info printing,
Jan Beulich <=
|
|
|
|
|