brintos

brintos / linux-shallow public Read only

0
0
Text · 420 B · 3c82210 Raw
20 lines · c
1// SPDX-License-Identifier: GPL-2.02/* Copyright (c) 2024 Meta Platforms, Inc. and affiliates. */3#include <vmlinux.h>4#include <bpf/bpf_tracing.h>5#include "../bpf_testmod/bpf_testmod.h"6 7char _license[] SEC("license") = "GPL";8 9SEC("struct_ops/test_1")10int BPF_PROG(test_1_forgotten)11{12	return 0;13}14 15SEC(".struct_ops.link")16struct bpf_testmod_ops ops = {17	/* we forgot to reference test_1_forgotten above, oops */18};19 20