All of lore.kernel.org
 help / color / mirror / Atom feed
From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: speck@linutronix.de
Subject: [MODERATED] Re: [PATCH 2/2] L1TF KVM v2 2
Date: Wed, 20 Jun 2018 16:32:00 -0400	[thread overview]
Message-ID: <20180620203200.GC28309@char.us.oracle.com> (raw)
In-Reply-To: <nycvar.YFH.7.76.1806202225220.6203@cbobk.fhfr.pm>

On Wed, Jun 20, 2018 at 10:25:45PM +0200, speck for Jiri Kosina wrote:
> On Wed, 20 Jun 2018, speck for Paolo Bonzini wrote:
> 
> > diff --git a/arch/x86/include/asm/cpufeatures.h b/arch/x86/include/asm/cpufeatures.h
> > index 578793e97431..aebf89c4175d 100644
> > --- a/arch/x86/include/asm/cpufeatures.h
> > +++ b/arch/x86/include/asm/cpufeatures.h
> > @@ -333,6 +333,7 @@
> >  #define X86_FEATURE_PCONFIG		(18*32+18) /* Intel PCONFIG */
> >  #define X86_FEATURE_SPEC_CTRL		(18*32+26) /* "" Speculation Control (IBRS + IBPB) */
> >  #define X86_FEATURE_INTEL_STIBP		(18*32+27) /* "" Single Thread Indirect Branch Predictors */
> > +#define X86_FEATURE_FLUSH_L1D		(18*32+28) /* IA32_FLUSH_L1D MSR */
> >  #define X86_FEATURE_ARCH_CAPABILITIES	(18*32+29) /* IA32_ARCH_CAPABILITIES MSR (Intel) */
> >  
> >  /*
> > diff --git a/arch/x86/include/asm/msr-index.h b/arch/x86/include/asm/msr-index.h
> > index 53d5b1b9255e..f43bd9f23053 100644
> > --- a/arch/x86/include/asm/msr-index.h
> > +++ b/arch/x86/include/asm/msr-index.h
> > @@ -65,6 +65,9 @@
> >  
> >  #define MSR_MTRRcap			0x000000fe
> >  
> > +#define MSR_IA32_FLUSH_L1D             0x10b
> > +#define MSR_IA32_FLUSH_L1D_VALUE       0x00000001
> > +
> >  #define MSR_IA32_ARCH_CAPABILITIES	0x0000010a
> >  #define ARCH_CAP_RDCL_NO		(1 << 0)   /* Not susceptible to Meltdown */
> >  #define ARCH_CAP_IBRS_ALL		(1 << 1)   /* Enhanced IBRS support */
> > diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
> > index 8bf8f672cece..c88ed554bb66 100644
> > --- a/arch/x86/kvm/x86.c
> > +++ b/arch/x86/kvm/x86.c
> > @@ -6551,8 +6551,15 @@ static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused,
> >  
> >  void kvm_l1d_flush(void)
> >  {
> > +	int size;
> > +
> > +	if (static_cpu_has(X86_FEATURE_FLUSH_L1D)) {
> 
> Umm, where exactly do you set this feature bit?

CPUID.7 array ends up being set  automatically in cpu/common.c.

> 
> Thanks,
> 
> -- 
> Jiri Kosina
> SUSE Labs

      reply	other threads:[~2018-06-20 20:32 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-20 16:42 [MODERATED] [PATCH 0/2] L1TF KVM v2 0 Paolo Bonzini
2018-06-20 16:42 ` [MODERATED] [PATCH 1/2] L1TF KVM v2 1 Paolo Bonzini
2018-06-20 20:13   ` [MODERATED] " Andi Kleen
2018-06-20 20:16     ` Thomas Gleixner
2018-06-20 20:31       ` [MODERATED] " Konrad Rzeszutek Wilk
2018-06-20 20:49         ` Thomas Gleixner
2018-06-20 20:52         ` [MODERATED] " Jiri Kosina
2018-06-20 20:24     ` Jiri Kosina
2018-06-20 21:01   ` Konrad Rzeszutek Wilk
2018-06-20 21:43     ` Konrad Rzeszutek Wilk
2018-06-21  8:15   ` Peter Zijlstra
2018-06-20 16:42 ` [MODERATED] [PATCH 2/2] L1TF KVM v2 2 Paolo Bonzini
2018-06-20 20:25   ` [MODERATED] " Jiri Kosina
2018-06-20 20:32     ` Konrad Rzeszutek Wilk [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180620203200.GC28309@char.us.oracle.com \
    --to=konrad.wilk@oracle.com \
    --cc=speck@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.