Mukesh Rathor
2013-Feb-16 00:35 UTC
[PATCH]: PVH linux: don''t print warning in case of failed mapping
Remove the printing of warning in case of failed mappings. Sometimes they are expected as in case of Qemu mapping pages during HVM guest creation. Signed-off-by: Mukesh Rathor <mukesh.rathor@oracle.com> --- arch/x86/xen/mmu.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c index fbf6a63..afa6af6 100644 --- a/arch/x86/xen/mmu.c +++ b/arch/x86/xen/mmu.c @@ -2499,9 +2499,6 @@ static int pvh_add_to_xen_p2m(unsigned long lpfn, unsigned long fgmfn, set_xen_guest_handle(xatpr.gpfns, &gpfn); rc = HYPERVISOR_memory_op(XENMEM_add_to_physmap_range, &xatpr); - if (rc) - pr_warn("d0: Failed to map pfn to mfn rc:%d pfn:%lx mfn:%lx\n", - rc, lpfn, fgmfn); return rc; } -- 1.7.2.3