aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/progs/atomic_bounds.c
blob: e5fff7fc7f8f4611df9e08ac224576e50615df4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: GPL-2.0
#include <linux/bpf.h>
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>
#include <stdbool.h>

#ifdef ENABLE_ATOMICS_TESTS
bool skip_tests __attribute((__section__(".data"))) = false;
#else
bool skip_tests = true;
#endif

SEC("fentry/bpf_fentry_test1")
int BPF_PROG(sub, int x)
{
#ifdef ENABLE_ATOMICS_TESTS
	int a = 0;
	int b = __sync_fetch_and_add(&a, 1);
	/* b is certainly 0 here. Can the verifier tell? */
	while (b)
		continue;
#endif
	return 0;
}