xref: /linux/tools/testing/selftests/bpf/progs/priv_prog.c (revision 4fc4187984e5dbd7ad63c3acf0b228fa9bf298d3)
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2023 Meta Platforms, Inc. and affiliates. */
3 
4 #include "vmlinux.h"
5 #include <bpf/bpf_helpers.h>
6 
7 char _license[] SEC("license") = "GPL";
8 
9 SEC("kprobe")
10 int kprobe_prog(void *ctx)
11 {
12 	return 1;
13 }
14