aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/bpf/progs/test_access_variable_array.c
blob: 808c49b79889023d4e2ad36ec2a031be70726eb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2023 Bytedance */

#include "vmlinux.h"
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>

unsigned long span = 0;

SEC("fentry/load_balance")
int BPF_PROG(fentry_fentry, int this_cpu, struct rq *this_rq,
		struct sched_domain *sd)
{
	span = sd->span[0];

	return 0;
}

char _license[] SEC("license") = "GPL";