diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2018-04-11 08:35:23 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2018-04-11 17:46:00 +0200 |
commit | 6a3d1e81a434fc311f224b8be77258bafc18ccc6 (patch) | |
tree | bc800ab72949a9c1f9f2c3d43becfbd3fe4df12b /arch/s390/include | |
parent | af4a72276d49da117dbc99799afee740a26f8f10 (diff) | |
download | linux-6a3d1e81a434fc311f224b8be77258bafc18ccc6.tar.gz linux-6a3d1e81a434fc311f224b8be77258bafc18ccc6.tar.bz2 linux-6a3d1e81a434fc311f224b8be77258bafc18ccc6.zip |
s390: correct nospec auto detection init order
With CONFIG_EXPOLINE_AUTO=y the call of spectre_v2_auto_early() via
early_initcall is done *after* the early_param functions. This
overwrites any settings done with the nobp/no_spectre_v2/spectre_v2
parameters. The code patching for the kernel is done after the
evaluation of the early parameters but before the early_initcall
is done. The end result is a kernel image that is patched correctly
but the kernel modules are not.
Make sure that the nospec auto detection function is called before the
early parameters are evaluated and before the code patching is done.
Fixes: 6e179d64126b ("s390: add automatic detection of the spectre defense")
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/include')
-rw-r--r-- | arch/s390/include/asm/nospec-branch.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/include/asm/nospec-branch.h b/arch/s390/include/asm/nospec-branch.h index 35bf28fe4c64..b4bd8c41e9d3 100644 --- a/arch/s390/include/asm/nospec-branch.h +++ b/arch/s390/include/asm/nospec-branch.h @@ -9,6 +9,7 @@ extern int nospec_disable; void nospec_init_branches(void); +void nospec_auto_detect(void); void nospec_revert(s32 *start, s32 *end); #endif /* __ASSEMBLY__ */ |