blob: 7f0375f4213d9ea566ae54d2b01f7293780940e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// SPDX-License-Identifier: GPL-2.0
#include <vmlinux.h>
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>
char _license[] SEC("license") = "GPL";
SEC("fentry.multi")
int BPF_PROG(test_fentry)
{
return 0;
}
SEC("fentry.multi.s")
int BPF_PROG(test_fentry_s)
{
return 0;
}
|