From: Jiri Olsa Date: Fri, 12 Jul 2024 13:52:28 +0000 (+0200) Subject: selftests/bpf: Change uretprobe syscall number in uprobe_syscall test X-Git-Tag: v6.11-rc1~136^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3e301b431b91e4b973dbc520e90e220acb5b91f5;p=thirdparty%2Flinux.git selftests/bpf: Change uretprobe syscall number in uprobe_syscall test Fixing the syscall number value. Link: https://lore.kernel.org/all/20240712135228.1619332-3-jolsa@kernel.org/ Fixes: 9e7f74e64ae5 ("selftests/bpf: Add uretprobe syscall call from user space test") Signed-off-by: Jiri Olsa Acked-by: Andrii Nakryiko Signed-off-by: Masami Hiramatsu (Google) --- diff --git a/tools/testing/selftests/bpf/prog_tests/uprobe_syscall.c b/tools/testing/selftests/bpf/prog_tests/uprobe_syscall.c index c8517c8f53139..bd8c75b620c29 100644 --- a/tools/testing/selftests/bpf/prog_tests/uprobe_syscall.c +++ b/tools/testing/selftests/bpf/prog_tests/uprobe_syscall.c @@ -216,7 +216,7 @@ static void test_uretprobe_regs_change(void) } #ifndef __NR_uretprobe -#define __NR_uretprobe 463 +#define __NR_uretprobe 467 #endif __naked unsigned long uretprobe_syscall_call_1(void)