Merge tag 'locking-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / s390 / lib / error-inject.c
blob8c9d4da87eefca1208a4b787b4c4b5288b81f22d
1 // SPDX-License-Identifier: GPL-2.0+
2 #include <asm/ptrace.h>
3 #include <linux/error-injection.h>
4 #include <linux/kprobes.h>
6 void override_function_with_return(struct pt_regs *regs)
8 /*
9 * Emulate 'br 14'. 'regs' is captured by kprobes on entry to some
10 * kernel function.
12 regs->psw.addr = regs->gprs[14];
14 NOKPROBE_SYMBOL(override_function_with_return);