Re: [RESEND PATCH 01/13] KVM: x86: Relocate MMIO exit stats counting

2019-08-23 Thread Sean Christopherson
On Fri, Aug 23, 2019 at 11:15:18AM +0200, Vitaly Kuznetsov wrote: > Sean Christopherson writes: > > > Move the stat.mmio_exits update into x86_emulate_instruction(). This is > > both a bug fix, e.g. the current update flows will incorrectly increment > > mmio_exits on emulation failure, and a

Re: [RESEND PATCH 01/13] KVM: x86: Relocate MMIO exit stats counting

2019-08-23 Thread Vitaly Kuznetsov
Sean Christopherson writes: > Move the stat.mmio_exits update into x86_emulate_instruction(). This is > both a bug fix, e.g. the current update flows will incorrectly increment > mmio_exits on emulation failure, and a preparatory change to set the > stage for eliminating EMULATE_DONE and

[RESEND PATCH 01/13] KVM: x86: Relocate MMIO exit stats counting

2019-08-22 Thread Sean Christopherson
Move the stat.mmio_exits update into x86_emulate_instruction(). This is both a bug fix, e.g. the current update flows will incorrectly increment mmio_exits on emulation failure, and a preparatory change to set the stage for eliminating EMULATE_DONE and company. Signed-off-by: Sean Christopherson