aboutsummaryrefslogtreecommitdiffstats
path: root/tools/objtool/check.c
diff options
context:
space:
mode:
authorBreno Leitao <[email protected]>2023-11-21 16:07:37 +0000
committerIngo Molnar <[email protected]>2024-01-10 09:52:29 +0000
commit0911b8c52c4d68c57d02f172daa55a42bce703f0 (patch)
treeddababa7d82c5cd9ec7f79d9a1b0e9942008d1c4 /tools/objtool/check.c
parentx86/bugs: Rename CONFIG_CPU_SRSO => CONFIG_MITIGATION_SRSO (diff)
downloadkernel-0911b8c52c4d68c57d02f172daa55a42bce703f0.tar.gz
kernel-0911b8c52c4d68c57d02f172daa55a42bce703f0.zip
x86/bugs: Rename CONFIG_RETHUNK => CONFIG_MITIGATION_RETHUNK
Step 10/10 of the namespace unification of CPU mitigations related Kconfig options. [ mingo: Added one more case. ] Suggested-by: Josh Poimboeuf <[email protected]> Signed-off-by: Breno Leitao <[email protected]> Signed-off-by: Ingo Molnar <[email protected]> Acked-by: Josh Poimboeuf <[email protected]> Cc: Linus Torvalds <[email protected]> Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'tools/objtool/check.c')
-rw-r--r--tools/objtool/check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/objtool/check.c b/tools/objtool/check.c
index 84067f018f7e..8440b7bb343c 100644
--- a/tools/objtool/check.c
+++ b/tools/objtool/check.c
@@ -3980,7 +3980,7 @@ static int validate_retpoline(struct objtool_file *file)
if (insn->type == INSN_RETURN) {
if (opts.rethunk) {
- WARN_INSN(insn, "'naked' return found in RETHUNK build");
+ WARN_INSN(insn, "'naked' return found in MITIGATION_RETHUNK build");
} else
continue;
} else {