WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / bpf / progs / test_get_stack_rawtp_err.c
blob8941a41c2a55f6573d5d6903dcfbf530b6724515
1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/bpf.h>
4 #include <bpf/bpf_helpers.h>
6 #define MAX_STACK_RAWTP 10
8 SEC("raw_tracepoint/sys_enter")
9 int bpf_prog2(void *ctx)
11 __u64 stack[MAX_STACK_RAWTP];
12 int error;
14 /* set all the flags which should return -EINVAL */
15 error = bpf_get_stack(ctx, stack, 0, -1);
16 if (error < 0)
17 goto loop;
19 return error;
20 loop:
21 while (1) {
22 error++;
26 char _license[] SEC("license") = "GPL";