Re: [Xen-devel] [PATCH 2/2] x86/vmx: Drop enum handler_return

2017-12-13 Thread Tian, Kevin
> From: Andrew Cooper [mailto:andrew.coop...@citrix.com] > Sent: Thursday, December 7, 2017 4:06 AM > > They are straight aliases of the more common X86EMUL_* constants. > While > adjusting these, fix the case indentation where appropriate. > > No functional change, confirmed by diff'ing the

Re: [Xen-devel] [PATCH 2/2] x86/vmx: Drop enum handler_return

2017-12-07 Thread Jan Beulich
>>> On 06.12.17 at 21:06, wrote: > @@ -2937,12 +2933,12 @@ static int vmx_msr_read_intercept(unsigned int msr, > uint64_t *msr_content) > goto done; > switch ( long_mode_do_msr_read(msr, msr_content) ) > { > -case

[Xen-devel] [PATCH 2/2] x86/vmx: Drop enum handler_return

2017-12-06 Thread Andrew Cooper
They are straight aliases of the more common X86EMUL_* constants. While adjusting these, fix the case indentation where appropriate. No functional change, confirmed by diff'ing the compiled binary. Signed-off-by: Andrew Cooper --- CC: Jan Beulich