[MODERATED] Re: ***UNCHECKED*** [PATCH v7 07/10] TAAv7 7
Michal Hocko <[email protected]>
| Newsgroups | org.kernel.lore.historical-speck |
|---|---|
| Message-ID | <[email protected]> |
On Mon 21-10-19 13:29:02, speck for Pawan Gupta wrote: > From: Pawan Gupta <[email protected]> > Subject: [PATCH v7 07/10] x86/tsx: Add "auto" option to TSX cmdline parameter > > Platforms which are not affected by X86_BUG_TAA may want the TSX feature > enabled. Add "auto" option to the TSX cmdline parameter. When tsx=auto > disable TSX when X86_BUG_TAA is present, otherwise enable TSX. > > More details on X86_BUG_TAA can be found here: > https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/tsx_async_abort.html Considering how the whole thing is confusing could you please explicitly state CPU models where auto is different from on as you did in an email in previous email thread? > Signed-off-by: Pawan Gupta <[email protected]> > Reviewed-by: Tony Luck <[email protected]> > Tested-by: Neelima Krishnan <[email protected]> > --- > Documentation/admin-guide/kernel-parameters.txt | 5 +++++ > arch/x86/kernel/cpu/tsx.c | 5 +++++ > 2 files changed, 10 insertions(+) > > diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt > index ad6b69057bb0..4d63dc8dc2fc 100644 > --- a/Documentation/admin-guide/kernel-parameters.txt > +++ b/Documentation/admin-guide/kernel-parameters.txt > @@ -4856,6 +4856,11 @@ > > on - Enable TSX on the system. > off - Disable TSX on the system. > + auto - Disable TSX if X86_BUG_TAA is present, > + otherwise enable TSX on the system. > + > + More details on X86_BUG_TAA are here: > + Documentation/admin-guide/hw-vuln/tsx_async_abort.rst > > Not specifying this option is equivalent to tsx=off. > > diff --git a/arch/x86/kernel/cpu/tsx.c b/arch/x86/kernel/cpu/tsx.c > index d031a8b6fb0e..9d7d3ad324b7 100644 > --- a/arch/x86/kernel/cpu/tsx.c > +++ b/arch/x86/kernel/cpu/tsx.c > @@ -79,6 +79,11 @@ void __init tsx_init(void) > tsx_ctrl_state = TSX_CTRL_ENABLE; > } else if (!strcmp(arg, "off")) { > tsx_ctrl_state = TSX_CTRL_DISABLE; > + } else if (!strcmp(arg, "auto")) { > + if (boot_cpu_has_bug(X86_BUG_TAA)) > + tsx_ctrl_state = TSX_CTRL_DISABLE; > + else > + tsx_ctrl_state = TSX_CTRL_ENABLE; > } else { > tsx_ctrl_state = TSX_CTRL_DISABLE; > pr_err("tsx: invalid option, defaulting to off\n"); > -- > 2.20.1 -- Michal Hocko SUSE Labs