diff options
author | Russell Currey <[email protected]> | 2021-06-08 15:48:51 +1000 |
---|---|---|
committer | Michael Ellerman <[email protected]> | 2022-05-04 19:37:46 +1000 |
commit | dcbff9ad418497c2608d4b4d9423efc8e87e130e (patch) | |
tree | a28ba459bf2cc4c7da6d4df248ac033eee377fcf | |
parent | 6c1e5600b7c305fe2b7c4967c14c4d0cc5a13fae (diff) |
selftests/powerpc: Fix typo in spectre_v2
Signed-off-by: Russell Currey <[email protected]>
Signed-off-by: Christophe Leroy <[email protected]>
Signed-off-by: Michael Ellerman <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | tools/testing/selftests/powerpc/security/spectre_v2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/powerpc/security/spectre_v2.c b/tools/testing/selftests/powerpc/security/spectre_v2.c index d42ca8c676c3..80dc97e3ec57 100644 --- a/tools/testing/selftests/powerpc/security/spectre_v2.c +++ b/tools/testing/selftests/powerpc/security/spectre_v2.c @@ -207,7 +207,7 @@ int spectre_v2_test(void) break; case COUNT_CACHE_DISABLED: if (miss_percent < 95) { - printf("Branch misses < 20%% unexpected in this configuration!\n"); + printf("Branch misses < 95%% unexpected in this configuration!\n"); printf("Possible mis-match between reported & actual mitigation\n"); return 1; } |