linux-yocto/tools/testing/selftests/bpf/progs/uprobe_multi_consumers.c
Jiri Olsa 98adc743ae selftests/bpf: Add uprobe multi consumers test
Adding test that attaches/detaches multiple consumers on
single uprobe and verifies all were hit as expected.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20240722202758.3889061-3-jolsa@kernel.org
2024-07-29 15:05:04 -07:00

40 lines
614 B
C

// SPDX-License-Identifier: GPL-2.0
#include <linux/bpf.h>
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>
#include <stdbool.h>
#include "bpf_kfuncs.h"
#include "bpf_misc.h"
char _license[] SEC("license") = "GPL";
__u64 uprobe_result[4];
SEC("uprobe.multi")
int uprobe_0(struct pt_regs *ctx)
{
uprobe_result[0]++;
return 0;
}
SEC("uprobe.multi")
int uprobe_1(struct pt_regs *ctx)
{
uprobe_result[1]++;
return 0;
}
SEC("uprobe.multi")
int uprobe_2(struct pt_regs *ctx)
{
uprobe_result[2]++;
return 0;
}
SEC("uprobe.multi")
int uprobe_3(struct pt_regs *ctx)
{
uprobe_result[3]++;
return 0;
}