diff options
author | Ilya Leoshkevich <iii@linux.ibm.com> | 2020-07-22 23:58:54 +0200 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2020-07-27 10:33:28 +0200 |
commit | 73d6eb48d26930f0cbdc8bf1ccb0ad964e7d2b90 (patch) | |
tree | 4cde972f30659982c9c0d4e79960b41021c368c1 /arch/s390/lib/Makefile | |
parent | 4631f3ca493a7c8f9f31aef45fc0fc0e182155b7 (diff) | |
download | linux-73d6eb48d26930f0cbdc8bf1ccb0ad964e7d2b90.tar.gz linux-73d6eb48d26930f0cbdc8bf1ccb0ad964e7d2b90.tar.bz2 linux-73d6eb48d26930f0cbdc8bf1ccb0ad964e7d2b90.zip |
s390: enable HAVE_FUNCTION_ERROR_INJECTION
This kernel feature is required for enabling BPF_KPROBE_OVERRIDE.
Define override_function_with_return() and regs_set_return_value()
functions, and fix compile errors in syscall_wrapper.h.
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'arch/s390/lib/Makefile')
-rw-r--r-- | arch/s390/lib/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/s390/lib/Makefile b/arch/s390/lib/Makefile index 28fd66d558ff..678333936f78 100644 --- a/arch/s390/lib/Makefile +++ b/arch/s390/lib/Makefile @@ -14,3 +14,5 @@ KASAN_SANITIZE_uaccess.o := n obj-$(CONFIG_S390_UNWIND_SELFTEST) += test_unwind.o CFLAGS_test_unwind.o += -fno-optimize-sibling-calls + +lib-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o |