From: Andres Lagar-Cavilla Date: Thu, 26 Jan 2012 13:21:27 +0000 (+0000) Subject: x86/mm: Remove stale variable from debugtrace printk in p2m audit X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1c5158f2a687ef7705da412b370a5d1e3d5837a9;p=xen.git x86/mm: Remove stale variable from debugtrace printk in p2m audit Signed-off-by: Andres Lagar-Cavilla Acked-by: Tim Deegan Committed-by: Tim Deegan --- diff --git a/xen/arch/x86/mm/p2m.c b/xen/arch/x86/mm/p2m.c index edcd09f24f..3080d2c1fb 100644 --- a/xen/arch/x86/mm/p2m.c +++ b/xen/arch/x86/mm/p2m.c @@ -1534,8 +1534,8 @@ void audit_p2m(struct domain *d, } __put_gfn(p2m, gfn); - P2M_PRINTK("OK: mfn=%#lx, gfn=%#lx, p2mfn=%#lx, lp2mfn=%#lx\n", - mfn, gfn, mfn_x(p2mfn), lp2mfn); + P2M_PRINTK("OK: mfn=%#lx, gfn=%#lx, p2mfn=%#lx\n", + mfn, gfn, mfn_x(p2mfn)); } spin_unlock(&d->page_alloc_lock);