[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID:
<LV3PR12MB926547CDEDCFAE3612F0AC2494F22@LV3PR12MB9265.namprd12.prod.outlook.com>
Date: Mon, 10 Feb 2025 17:17:22 +0000
From: "Kaplan, David" <David.Kaplan@....com>
To: Brendan Jackman <jackmanb@...gle.com>
CC: Thomas Gleixner <tglx@...utronix.de>, Borislav Petkov <bp@...en8.de>,
Peter Zijlstra <peterz@...radead.org>, Josh Poimboeuf <jpoimboe@...nel.org>,
Pawan Gupta <pawan.kumar.gupta@...ux.intel.com>, Ingo Molnar
<mingo@...hat.com>, Dave Hansen <dave.hansen@...ux.intel.com>,
"x86@...nel.org" <x86@...nel.org>, "H . Peter Anvin" <hpa@...or.com>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: RE: [PATCH v3 04/35] x86/bugs: Restructure mds mitigation
[AMD Official Use Only - AMD Internal Distribution Only]
> -----Original Message-----
> From: Brendan Jackman <jackmanb@...gle.com>
> Sent: Monday, February 10, 2025 10:14 AM
> To: Kaplan, David <David.Kaplan@....com>
> Cc: Thomas Gleixner <tglx@...utronix.de>; Borislav Petkov <bp@...en8.de>; Peter
> Zijlstra <peterz@...radead.org>; Josh Poimboeuf <jpoimboe@...nel.org>; Pawan
> Gupta <pawan.kumar.gupta@...ux.intel.com>; Ingo Molnar <mingo@...hat.com>;
> Dave Hansen <dave.hansen@...ux.intel.com>; x86@...nel.org; H . Peter Anvin
> <hpa@...or.com>; linux-kernel@...r.kernel.org
> Subject: Re: [PATCH v3 04/35] x86/bugs: Restructure mds mitigation
>
> Caution: This message originated from an External Source. Use proper caution
> when opening attachments, clicking links, or responding.
>
>
> On Wed, 8 Jan 2025 at 21:27, David Kaplan <david.kaplan@....com> wrote:
> > +/*
> > + * Speculation Vulnerability Handling
> > + *
> > + * Each vulnerability is handled with the following functions:
> > + * <vuln>_select_mitigation() -- Selects a mitigation to use. This should
> > + * take into account all relevant command line
> > + * options.
> > + * <vuln>_update_mitigation() -- This is called after all vulnerabilities have
> > + * selected a mitigation, in case the selection
> > + * may want to change based on other choices
> > + * made. This function is optional.
> > + * <vuln>_apply_mitigation() -- Enable the selected mitigation.
>
> Maybe also worth calling out cpu_bugs_smt_update() here?
Hmm, how were you thinking? The 3 functions above are defined for each vulnerability. So this is more intended as a guide where if adding a new vulnerability, you should define the functions above as needed.
>
> > +/* Return TRUE if any VERW-based mitigation is enabled. */ static
> > +bool __init verw_mitigation_enabled(void) {
> > + return (mds_mitigation != MDS_MITIGATION_OFF ||
> > + (taa_mitigation != TAA_MITIGATION_OFF &&
> > + taa_mitigation != TAA_MITIGATION_TSX_DISABLED) ||
> > + mmio_mitigation != MMIO_MITIGATION_OFF ||
> > + rfds_mitigation != RFDS_MITIGATION_OFF); }
>
> Since you defined such nice terminology above, why not use it here and say
> verw_mitigation_selected()?
>
> (Obviously if the alternative was a respin for this trivial issue alone I would prefer to
> merge with the current name!)
I do like that name better, I'll use that unless anyone else objects.
>
> > +static void __init mds_update_mitigation(void) {
> > + if (!boot_cpu_has_bug(X86_BUG_MDS) || cpu_mitigations_off())
> > + return;
> > +
> > + /* If TAA, MMIO, or RFDS are being mitigated, MDS gets mitigated too. */
> > + if (verw_mitigation_enabled()) {
> > + if (boot_cpu_has(X86_FEATURE_MD_CLEAR))
> > + mds_mitigation = MDS_MITIGATION_FULL;
> > + else
> > + mds_mitigation = MDS_MITIGATION_VMWERV;
> > + }
>
> This is changing what the user will see in sysfs. This seems good to me, but it
> would be worth calling it out in the commit log I think.
Does it? What is the case you're thinking of where it is different vs tip?
--David Kaplan
Powered by blists - more mailing lists