Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP2:Update
xen.7652
5afc13ae-1-x86-read-MSR_ARCH_CAPABILITIES-once....
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 5afc13ae-1-x86-read-MSR_ARCH_CAPABILITIES-once.patch of Package xen.7652
# Commit d6c65187252a6c1810fd24c4d46f812840de8d3c # Date 2018-05-16 12:19:10 +0100 # Author Andrew Cooper <andrew.cooper3@citrix.com> # Committer Andrew Cooper <andrew.cooper3@citrix.com> x86/spec_ctrl: Read MSR_ARCH_CAPABILITIES only once Make it available from the beginning of init_speculation_mitigations(), and pass it into appropriate functions. Fix an RSBA typo while moving the affected comment. Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Reviewed-by: Wei Liu <wei.liu2@citrix.com> Reviewed-by: Jan Beulich <jbeulich@suse.com> --- sle12sp2.orig/xen/arch/x86/spec_ctrl.c 2018-04-27 15:59:11.000000000 +0200 +++ sle12sp2/xen/arch/x86/spec_ctrl.c 2018-05-23 11:08:26.000000000 +0200 @@ -81,18 +81,15 @@ static int __init parse_bti(const char * } custom_param("bti", parse_bti); -static void __init print_details(enum ind_thunk thunk) +static void __init print_details(enum ind_thunk thunk, uint64_t caps) { unsigned int _7d0 = 0, e8b = 0, tmp; - uint64_t caps = 0; /* Collect diagnostics about available mitigations. */ if ( boot_cpu_data.cpuid_level >= 7 ) cpuid_count(7, 0, &tmp, &tmp, &tmp, &_7d0); if ( boot_cpu_data.extended_cpuid_level >= 0x80000008 ) cpuid(0x80000008, &tmp, &e8b, &tmp, &tmp); - if ( _7d0 & cpufeat_mask(X86_FEATURE_ARCH_CAPS) ) - rdmsrl(MSR_ARCH_CAPABILITIES, caps); printk(XENLOG_DEBUG "Speculative mitigation facilities:\n"); @@ -125,7 +122,7 @@ static void __init print_details(enum in } /* Calculate whether Retpoline is known-safe on this CPU. */ -static bool_t __init retpoline_safe(void) +static bool_t __init retpoline_safe(uint64_t caps) { unsigned int ucode_rev = this_cpu(ucode_cpu_info).cpu_sig.rev; @@ -136,19 +133,12 @@ static bool_t __init retpoline_safe(void boot_cpu_data.x86 != 6 ) return 0; - if ( boot_cpu_has(X86_FEATURE_ARCH_CAPS) ) - { - uint64_t caps; - - rdmsrl(MSR_ARCH_CAPABILITIES, caps); - - /* - * RBSA may be set by a hypervisor to indicate that we may move to a - * processor which isn't retpoline-safe. - */ - if ( caps & ARCH_CAPS_RSBA ) - return 0; - } + /* + * RSBA may be set by a hypervisor to indicate that we may move to a + * processor which isn't retpoline-safe. + */ + if ( caps & ARCH_CAPS_RSBA ) + return 0; switch ( boot_cpu_data.x86_model ) { @@ -218,6 +208,10 @@ void __init init_speculation_mitigations { enum ind_thunk thunk = THUNK_DEFAULT; bool_t ibrs = 0; + uint64_t caps = 0; + + if ( boot_cpu_has(X86_FEATURE_ARCH_CAPS) ) + rdmsrl(MSR_ARCH_CAPABILITIES, caps); /* * Has the user specified any custom BTI mitigations? If so, follow their @@ -246,7 +240,7 @@ void __init init_speculation_mitigations * On Intel hardware, we'd like to use retpoline in preference to * IBRS, but only if it is safe on this hardware. */ - else if ( retpoline_safe() ) + else if ( retpoline_safe(caps) ) thunk = THUNK_RETPOLINE; else if ( boot_cpu_has(X86_FEATURE_IBRSB) ) ibrs = 1; @@ -331,7 +325,7 @@ void __init init_speculation_mitigations /* (Re)init BSP state now that default_bti_ist_info has been calculated. */ init_shadow_spec_ctrl_state(); - print_details(thunk); + print_details(thunk, caps); } static void __init __maybe_unused build_assertions(void)
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor