public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Borislav Petkov <bp@alien8.de>
To: Dave Hansen <dave@sr71.net>
Cc: x86@kernel.org, hpa@zytor.com, qiaowei.ren@intel.com,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/4] x86: introduce disabled-features
Date: Wed, 2 Jul 2014 21:27:09 +0200	[thread overview]
Message-ID: <20140702192709.GK1318@pd.tnic> (raw)
In-Reply-To: <20140702162928.B3BBEB26@viggo.jf.intel.com>

On Wed, Jul 02, 2014 at 09:29:28AM -0700, Dave Hansen wrote:
> 
> From: Dave Hansen <dave.hansen@linux.intel.com>
> 
> I believe the REQUIRED_MASK aproach was taken so that it was
> easier to consult in assembly (arch/x86/kernel/verify_cpu.S).
> DISABLED_MASK does not have the same restriction, but I
> implemented it the same way for consistency.
> 
> We have a REQUIRED_MASK... which does two things:
> 1. Keeps a list of cpuid bits to check in very early boot and
>    refuse to boot if those are not present.
> 2. Consulted during cpu_has() checks, which allows us to
>    optimize out things at compile-time.  In other words, if we
>    *KNOW* we will not boot with the feature off, then we can
>    safely assume that it will be present forever.
> 
> But, we don't have a similar mechanism for CPU features which
> may be present but that we know we will not use.  We simply
> use our existing mechanisms to repeatedly check the status of
> the bit at runtime (well, the alternatives patching helps here
> but it does not provide compile-time optimization).
> 
> Adding a feature to disabled-features.h allows the bit to be
> checked via a new macro: cpu_feature_enabled().  Note that
> for features in DISABLED_MASK, checks with this macro have
> all of the benefits of an #ifdef.  Before, we would have done
> this in a header:
> 
> #ifdef CONFIG_X86_INTEL_MPX
> #define cpu_has_mpx cpu_has(X86_FEATURE_MPX)
> #else
> #define cpu_has_mpx 0
> #endif
> 
> and this in the code:
> 
> 	if (cpu_has_mpx)
> 		do_some_mpx_thing();
> 
> Now, just add your feature to DISABLED_MASK and you can do this
> everywhere, and get the same benefits you would have from
> #ifdefs:
> 
> 	if (cpu_feature_enabled(X86_FEATURE_MPX))
> 		do_some_mpx_thing();
> 
> We need a new function and *not* a modification to cpu_has()
> because there are cases where we actually need to check the CPU
> itself, despite what features the kernel supports.  The best
> example of this is a hypervisor which has no control over what
> features its guests are using and where the guest does not depend
> on the host for support.
> 
> Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com>

Acked-by: Borislav Petkov <bp@suse.de>

...

> +/*
> + * Make sure to add features to the correct mask

Hehe, good. :-)

> + */
> +#define DISABLED_MASK0	0
> +#define DISABLED_MASK1	0
> +#define DISABLED_MASK2	0
> +#define DISABLED_MASK3	0
> +#define DISABLED_MASK4	0
> +#define DISABLED_MASK5	0
> +#define DISABLED_MASK6	0
> +#define DISABLED_MASK7	0
> +#define DISABLED_MASK8	0
> +#define DISABLED_MASK9	0
> +
> +#endif /* _ASM_X86_DISABLED_FEATURES_H */
> _
> 

-- 
Regards/Gruss,
    Boris.

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

  reply	other threads:[~2014-07-02 19:27 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-02 16:29 [PATCH 0/4] [v3] x86 disabled features macros Dave Hansen
2014-07-02 16:29 ` [PATCH 1/4] x86: axe the lightly-used cpu_has_pae Dave Hansen
2014-07-02 19:19   ` Borislav Petkov
2014-07-02 16:29 ` [PATCH 2/4] x86: introduce disabled-features Dave Hansen
2014-07-02 19:27   ` Borislav Petkov [this message]
2014-07-02 16:29 ` [PATCH 3/4] x86: add more disabled features Dave Hansen
2014-07-02 19:34   ` Borislav Petkov
2014-07-02 16:29 ` [PATCH 4/4] x86: add MPX to disaabled features Dave Hansen
2014-07-02 19:43   ` Borislav Petkov

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=20140702192709.GK1318@pd.tnic \
    --to=bp@alien8.de \
    --cc=dave@sr71.net \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=qiaowei.ren@intel.com \
    --cc=x86@kernel.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox