From: Tim Deegan Date: Thu, 15 Mar 2012 10:09:03 +0000 (+0000) Subject: vmx: Make it clear that the VMEXIT reason is in hex. X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=042f53f4b35c7132cf1a9a4f0bb6104dd1fce88a;p=xen.git vmx: Make it clear that the VMEXIT reason is in hex. Signed-off-by: Tim Deegan Acked-by: Keir Fraser Committed-by: Tim Deegan --- diff --git a/xen/arch/x86/hvm/vmx/vmx.c b/xen/arch/x86/hvm/vmx/vmx.c index 61d1fda54d..18aef5b0db 100644 --- a/xen/arch/x86/hvm/vmx/vmx.c +++ b/xen/arch/x86/hvm/vmx/vmx.c @@ -2720,7 +2720,7 @@ void vmx_vmexit_handler(struct cpu_user_regs *regs) /* fall through */ default: exit_and_crash: - gdprintk(XENLOG_ERR, "Bad vmexit (reason %x)\n", exit_reason); + gdprintk(XENLOG_ERR, "Bad vmexit (reason %#x)\n", exit_reason); domain_crash(v->domain); break; }