diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2018-05-09 03:47:53 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2018-05-09 04:55:01 -0400 |
commit | b7e7f5051bf860dd2a39b581caa10ea3e503da56 (patch) | |
tree | fa6d0129902686430de4e46d2bc9235ac46f4d27 | |
parent | 0391fcb5e1f8f10d4cf491ec2ea107a2e6a937f7 (diff) |
s390: remove closung punctuation from spectre messages
There should not be a '.' at the end of the spectre syslog messages.
Remove them.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r-- | arch/s390/kernel/nospec-branch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/kernel/nospec-branch.c b/arch/s390/kernel/nospec-branch.c index 8ad6a7128b3a..18ae7b9c71d6 100644 --- a/arch/s390/kernel/nospec-branch.c +++ b/arch/s390/kernel/nospec-branch.c | |||
@@ -36,9 +36,9 @@ early_param("nospec", nospec_setup_early); | |||
36 | static int __init nospec_report(void) | 36 | static int __init nospec_report(void) |
37 | { | 37 | { |
38 | if (IS_ENABLED(CC_USING_EXPOLINE) && !nospec_disable) | 38 | if (IS_ENABLED(CC_USING_EXPOLINE) && !nospec_disable) |
39 | pr_info("Spectre V2 mitigation: execute trampolines.\n"); | 39 | pr_info("Spectre V2 mitigation: execute trampolines\n"); |
40 | if (__test_facility(82, S390_lowcore.alt_stfle_fac_list)) | 40 | if (__test_facility(82, S390_lowcore.alt_stfle_fac_list)) |
41 | pr_info("Spectre V2 mitigation: limited branch prediction.\n"); | 41 | pr_info("Spectre V2 mitigation: limited branch prediction\n"); |
42 | return 0; | 42 | return 0; |
43 | } | 43 | } |
44 | arch_initcall(nospec_report); | 44 | arch_initcall(nospec_report); |