Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/s390/kernel/bpf.c
170910 views
1
// SPDX-License-Identifier: GPL-2.0
2
#include <asm/lowcore.h>
3
#include <linux/btf.h>
4
5
__bpf_kfunc_start_defs();
6
7
__bpf_kfunc struct lowcore *bpf_get_lowcore(void)
8
{
9
return get_lowcore();
10
}
11
12
__bpf_kfunc_end_defs();
13
14