diff options
author | Tiezhu Yang <yangtiezhu@loongson.cn> | 2024-01-17 05:43:08 +0100 |
---|---|---|
committer | Huacai Chen <chenhuacai@loongson.cn> | 2024-01-17 05:43:08 +0100 |
commit | 91af17cd7d03db8836554c91ba7c38b0817aa980 (patch) | |
tree | 47a78fb1a8e9ec6b5a03b7942994efc85bbce597 /arch/loongarch | |
parent | LoongArch: Use generic interface to support crashkernel=X,[high,low] (diff) | |
download | linux-91af17cd7d03db8836554c91ba7c38b0817aa980.tar.xz linux-91af17cd7d03db8836554c91ba7c38b0817aa980.zip |
LoongArch: Fix definition of ftrace_regs_set_instruction_pointer()
The current definition of ftrace_regs_set_instruction_pointer() is not
correct. Obviously, this function is used to set instruction pointer but
not return value, so it should call instruction_pointer_set() instead of
regs_set_return_value().
There is no side effect by now because it is only used for kernel live-
patching which is not supported, so fix it to avoid failure when testing
livepatch in the future.
Fixes: 6fbff14a6382 ("LoongArch: ftrace: Abstract DYNAMIC_FTRACE_WITH_ARGS accesses")
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
Diffstat (limited to 'arch/loongarch')
-rw-r--r-- | arch/loongarch/include/asm/ftrace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/loongarch/include/asm/ftrace.h b/arch/loongarch/include/asm/ftrace.h index a11996eb5892..de891c2c83d4 100644 --- a/arch/loongarch/include/asm/ftrace.h +++ b/arch/loongarch/include/asm/ftrace.h @@ -63,7 +63,7 @@ ftrace_regs_get_instruction_pointer(struct ftrace_regs *fregs) static __always_inline void ftrace_regs_set_instruction_pointer(struct ftrace_regs *fregs, unsigned long ip) { - regs_set_return_value(&fregs->regs, ip); + instruction_pointer_set(&fregs->regs, ip); } #define ftrace_regs_get_argument(fregs, n) \ |