mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-16 07:32:22 -05:00
selftests/bpf: Add kprobe_multi check to module attach test
Adding test that makes sure the kernel module won't be removed if there's kprobe multi link defined on top of it. Acked-by: Song Liu <song@kernel.org> Signed-off-by: Jiri Olsa <jolsa@kernel.org> Link: https://lore.kernel.org/r/20221025134148.3300700-8-jolsa@kernel.org Signed-off-by: Alexei Starovoitov <ast@kernel.org>
This commit is contained in:
committed by
Alexei Starovoitov
parent
fee356ede9
commit
e697d8dceb
@@ -103,6 +103,13 @@ void test_module_attach(void)
|
||||
ASSERT_ERR(delete_module("bpf_testmod", 0), "delete_module");
|
||||
bpf_link__destroy(link);
|
||||
|
||||
link = bpf_program__attach(skel->progs.kprobe_multi);
|
||||
if (!ASSERT_OK_PTR(link, "attach_kprobe_multi"))
|
||||
goto cleanup;
|
||||
|
||||
ASSERT_ERR(delete_module("bpf_testmod", 0), "delete_module");
|
||||
bpf_link__destroy(link);
|
||||
|
||||
cleanup:
|
||||
test_module_attach__destroy(skel);
|
||||
}
|
||||
|
||||
@@ -110,4 +110,10 @@ int BPF_PROG(handle_fmod_ret,
|
||||
return 0; /* don't override the exit code */
|
||||
}
|
||||
|
||||
SEC("kprobe.multi/bpf_testmod_test_read")
|
||||
int BPF_PROG(kprobe_multi)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
char _license[] SEC("license") = "GPL";
|
||||
|
||||
Reference in New Issue
Block a user