[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH for-4.11] x86: Use spec_ctrl_{enter, exit}_idle() in the S3/S5 path
This avoids opencoding the functionality (and missing one bit of it), and and some comments explaining what is going on. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- CC: Jan Beulich <JBeulich@xxxxxxxx> CC: Juergen Gross <jgross@xxxxxxxx> This is effectively a bugfix of c/s 710a8eb "x86: suppress BTI mitigations around S3 suspend/resume" so should be considered for 4.11 at this point. --- xen/arch/x86/acpi/power.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xen/arch/x86/acpi/power.c b/xen/arch/x86/acpi/power.c index 0763846..bb0d095 100644 --- a/xen/arch/x86/acpi/power.c +++ b/xen/arch/x86/acpi/power.c @@ -213,7 +213,8 @@ static int enter_state(u32 state) error = 0; ci = get_cpu_info(); - ci->use_shadow_spec_ctrl = 0; + spec_ctrl_enter_idle(ci); + /* Avoid NMI/#MC using MSR_SPEC_CTRL until we've reloaded microcode. */ ci->bti_ist_info = 0; ACPI_FLUSH_CPU_CACHE(); @@ -257,10 +258,9 @@ static int enter_state(u32 state) if ( !recheck_cpu_features(0) ) panic("Missing previously available feature(s)."); + /* Re-enabled default NMI/#MC use of MSR_SPEC_CTRL. */ ci->bti_ist_info = default_bti_ist_info; - asm volatile (ALTERNATIVE("", "wrmsr", X86_FEATURE_XEN_IBRS_SET) - :: "a" (SPEC_CTRL_IBRS), "c" (MSR_SPEC_CTRL), "d" (0) - : "memory"); + spec_ctrl_exit_idle(ci); done: spin_debug_enable(); -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |