[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 3/4] x86/vvmx: Fixes to VMWRITE emulation
* Don't assume that decode_vmx_inst() always returns X86EMUL_EXCEPTION. * The okay boolean is never written, making the else case dead. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- CC: Jan Beulich <JBeulich@xxxxxxxx> CC: Wei Liu <wei.liu2@xxxxxxxxxx> CC: Roger Pau Monné <roger.pau@xxxxxxxxxx> CC: Sergey Dyasli <sergey.dyasli@xxxxxxxxxx> CC: Jun Nakajima <jun.nakajima@xxxxxxxxx> CC: Kevin Tian <kevin.tian@xxxxxxxxx> --- xen/arch/x86/hvm/vmx/vvmx.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/xen/arch/x86/hvm/vmx/vvmx.c b/xen/arch/x86/hvm/vmx/vvmx.c index 5daab82..41c4e2f 100644 --- a/xen/arch/x86/hvm/vmx/vvmx.c +++ b/xen/arch/x86/hvm/vmx/vvmx.c @@ -1872,11 +1872,12 @@ static int nvmx_handle_vmwrite(struct cpu_user_regs *regs) struct vmx_inst_decoded decode; unsigned long operand; u64 vmcs_encoding; - bool_t okay = 1; enum vmx_insn_errno err; + int rc; - if ( decode_vmx_inst(regs, &decode, &operand) != X86EMUL_OKAY ) - return X86EMUL_EXCEPTION; + rc = decode_vmx_inst(regs, &decode, &operand); + if ( rc != X86EMUL_OKAY ) + return rc; if ( !vvmcx_valid(v) ) { @@ -1905,10 +1906,7 @@ static int nvmx_handle_vmwrite(struct cpu_user_regs *regs) break; } - if ( okay ) - vmsucceed(regs); - else - vmfail_valid(regs, VMX_INSN_UNSUPPORTED_VMCS_COMPONENT); + vmsucceed(regs); return X86EMUL_OKAY; } -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |