mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Adding uprobe session consumers to the consumer test, so we get the session into the test mix. In addition scaling down the test to have just 1 uprobe and 1 uretprobe, otherwise the test time grows and is unsuitable for CI even with threads. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/20241108134544.480660-13-jolsa@kernel.org
39 lines
618 B
C
39 lines
618 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.session")
|
|
int uprobe_2(struct pt_regs *ctx)
|
|
{
|
|
uprobe_result[2]++;
|
|
return 0;
|
|
}
|
|
|
|
SEC("uprobe.session")
|
|
int uprobe_3(struct pt_regs *ctx)
|
|
{
|
|
uprobe_result[3]++;
|
|
return 1;
|
|
}
|