public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH 4/4] kvm: Emulate MOVBE
       [not found]                 ` <20130715223930.GD14503@pd.tnic>
@ 2013-07-15 22:41                   ` Borislav Petkov
  2013-07-16  6:04                     ` Gleb Natapov
  0 siblings, 1 reply; 2+ messages in thread
From: Borislav Petkov @ 2013-07-15 22:41 UTC (permalink / raw)
  To: Gleb Natapov
  Cc: KVM, Paolo Bonzini, Andre Przywara, H. Peter Anvin, X86 ML,
	Borislav Petkov

Fix kvm ML already.

On Tue, Jul 16, 2013 at 12:39:30AM +0200, Borislav Petkov wrote:
> On Sun, Jul 07, 2013 at 01:18:27PM +0300, Gleb Natapov wrote:
> > KVM does not enables emulation because QEMU called
> > KVM_GET_EMULATED_CPUID. KVM enables emulation because QEMU sets
> > MOVBE bit in a guest visible cpuid using KVM_SET_CPUID2. QEMU does
> > that either because host and cpu model QEMU uses both have it, or
> > because user asked for it specifically and KVM reports that it can
> > be emulated. Why emulator should care what is the reason MOVBE is
> > enabled?
> 
> Ok, I think I know what you mean:
> 
> diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
> index 6fe5a838116a..c963ff8e43dd 100644
> --- a/arch/x86/kvm/emulate.c
> +++ b/arch/x86/kvm/emulate.c
> @@ -3147,10 +3147,18 @@ static int em_mov(struct x86_emulate_ctxt *ctxt)
>         return X86EMUL_CONTINUE;
>  }
>  
> +#undef F
> +#define F(x) bit(X86_FEATURE_##x)
> +
>  static int em_movbe(struct x86_emulate_ctxt *ctxt)
>  {
> +       u32 ebx, ecx, edx, eax = 1;
>         u16 tmp;
>  
> +       ctxt->ops->get_cpuid(ctxt, &eax, &ebx, &ecx, &edx);
> +       if (!(ecx & F(MOVBE)))
> +               return X86EMUL_PROPAGATE_FAULT;
> +
>         switch (ctxt->op_bytes) {
>         case 2:
>                 /*
> ---
> 
> Right?

-- 
Regards/Gruss,
    Boris.

Sent from a fat crate under my desk. Formatting is fine.
--

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH 4/4] kvm: Emulate MOVBE
  2013-07-15 22:41                   ` [PATCH 4/4] kvm: Emulate MOVBE Borislav Petkov
@ 2013-07-16  6:04                     ` Gleb Natapov
  0 siblings, 0 replies; 2+ messages in thread
From: Gleb Natapov @ 2013-07-16  6:04 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: KVM, Paolo Bonzini, Andre Przywara, H. Peter Anvin, X86 ML,
	Borislav Petkov

On Tue, Jul 16, 2013 at 12:41:15AM +0200, Borislav Petkov wrote:
> Fix kvm ML already.
> 
> On Tue, Jul 16, 2013 at 12:39:30AM +0200, Borislav Petkov wrote:
> > On Sun, Jul 07, 2013 at 01:18:27PM +0300, Gleb Natapov wrote:
> > > KVM does not enables emulation because QEMU called
> > > KVM_GET_EMULATED_CPUID. KVM enables emulation because QEMU sets
> > > MOVBE bit in a guest visible cpuid using KVM_SET_CPUID2. QEMU does
> > > that either because host and cpu model QEMU uses both have it, or
> > > because user asked for it specifically and KVM reports that it can
> > > be emulated. Why emulator should care what is the reason MOVBE is
> > > enabled?
> > 
> > Ok, I think I know what you mean:
> > 
> > diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
> > index 6fe5a838116a..c963ff8e43dd 100644
> > --- a/arch/x86/kvm/emulate.c
> > +++ b/arch/x86/kvm/emulate.c
> > @@ -3147,10 +3147,18 @@ static int em_mov(struct x86_emulate_ctxt *ctxt)
> >         return X86EMUL_CONTINUE;
> >  }
> >  
> > +#undef F
> > +#define F(x) bit(X86_FEATURE_##x)
> > +
> >  static int em_movbe(struct x86_emulate_ctxt *ctxt)
> >  {
> > +       u32 ebx, ecx, edx, eax = 1;
> >         u16 tmp;
> >  
> > +       ctxt->ops->get_cpuid(ctxt, &eax, &ebx, &ecx, &edx);
> > +       if (!(ecx & F(MOVBE)))
> > +               return X86EMUL_PROPAGATE_FAULT;
> > +
> >         switch (ctxt->op_bytes) {
> >         case 2:
> >                 /*
> > ---
> > 
> > Right?
> 
Right, just replace return X86EMUL_PROPAGATE_FAULT; with return emulate_ud(ctxt);

--
			Gleb.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-07-16  6:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20130625111937.GP18508@redhat.com>
     [not found] ` <20130702105758.GF4535@pd.tnic>
     [not found]   ` <20130702115122.GA28872@redhat.com>
     [not found]     ` <20130702131910.GG4535@pd.tnic>
     [not found]       ` <20130702141606.GB18489@redhat.com>
     [not found]         ` <20130706122739.GB7149@pd.tnic>
     [not found]           ` <20130707093552.GV5113@redhat.com>
     [not found]             ` <20130707100023.GB27168@pd.tnic>
     [not found]               ` <20130707101826.GW5113@redhat.com>
     [not found]                 ` <20130715223930.GD14503@pd.tnic>
2013-07-15 22:41                   ` [PATCH 4/4] kvm: Emulate MOVBE Borislav Petkov
2013-07-16  6:04                     ` Gleb Natapov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox