treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / arch / arm64 / lib / error-inject.c
blobed15021da3ed0c77f4574ac6a3eda70a6464d565
1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/error-injection.h>
4 #include <linux/kprobes.h>
6 void override_function_with_return(struct pt_regs *regs)
8 /*
9 * 'regs' represents the state on entry of a predefined function in
10 * the kernel/module and which is captured on a kprobe.
12 * When kprobe returns back from exception it will override the end
13 * of probed function and directly return to the predefined
14 * function's caller.
16 instruction_pointer_set(regs, procedure_link_pointer(regs));
18 NOKPROBE_SYMBOL(override_function_with_return);