This commit is contained in:
committed by
Git OBS Bridge
parent
4790095364
commit
0bb51565d6
@@ -1,6 +1,8 @@
|
||||
--- a/xen/arch/x86/domain.c
|
||||
+++ b/xen/arch/x86/domain.c
|
||||
@@ -135,7 +135,7 @@ void dump_pageframe_info(struct domain *
|
||||
Index: xen-3.4.0-testing/xen/arch/x86/domain.c
|
||||
===================================================================
|
||||
--- xen-3.4.0-testing.orig/xen/arch/x86/domain.c
|
||||
+++ xen-3.4.0-testing/xen/arch/x86/domain.c
|
||||
@@ -143,7 +143,7 @@ void dump_pageframe_info(struct domain *
|
||||
|
||||
printk("Memory pages belonging to domain %u:\n", d->domain_id);
|
||||
|
||||
@@ -9,9 +11,9 @@
|
||||
{
|
||||
printk(" DomPage list too long to display\n");
|
||||
}
|
||||
@@ -143,6 +143,15 @@ void dump_pageframe_info(struct domain *
|
||||
@@ -151,6 +151,15 @@ void dump_pageframe_info(struct domain *
|
||||
{
|
||||
list_for_each_entry ( page, &d->page_list, list )
|
||||
page_list_for_each ( page, &d->page_list )
|
||||
{
|
||||
+ if ( d->tot_pages > 16 )
|
||||
+ {
|
||||
@@ -25,17 +27,3 @@
|
||||
printk(" DomPage %p: caf=%08lx, taf=%" PRtype_info "\n",
|
||||
_p(page_to_mfn(page)),
|
||||
page->count_info, page->u.inuse.type_info);
|
||||
--- a/xen/common/keyhandler.c
|
||||
+++ b/xen/common/keyhandler.c
|
||||
@@ -192,9 +192,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",
|
||||
|
Reference in New Issue
Block a user