From: Ian Campbell Date: Tue, 22 Aug 2006 17:50:22 +0000 (+0100) Subject: [XEN] Remove some accidentally commited debug code X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15710^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8086b5b00e0580cddbbc999407901dc30ef3c76b;p=xen.git [XEN] Remove some accidentally commited debug code from dom0 domain builder. Signed-off-by: Ian Campbell --- diff --git a/xen/arch/x86/domain_build.c b/xen/arch/x86/domain_build.c index 925e55bed4..be29f645d0 100644 --- a/xen/arch/x86/domain_build.c +++ b/xen/arch/x86/domain_build.c @@ -701,9 +701,7 @@ int construct_dom0(struct domain *d, { p += strlen("HYPERCALL_PAGE="); hypercall_page = simple_strtoul(p, NULL, 16); - printk("(1) hypercall page is %#lx\n", hypercall_page); hypercall_page = dsi.v_start + (hypercall_page << PAGE_SHIFT); - printk("(2) hypercall page is %#lx dsi.v_start is %#lx\n", hypercall_page, dsi.v_start); if ( (hypercall_page < dsi.v_start) || (hypercall_page >= v_end) ) { write_ptbase(current); @@ -712,7 +710,6 @@ int construct_dom0(struct domain *d, return -1; } - printk("(3) hypercall page is %#lx\n", hypercall_page); hypercall_page_initialise(d, (void *)hypercall_page); }