brintos

brintos / linux-shallow public Read only

0
0
Text · 334 B · 2c9fb5a Raw
15 lines · c
1// SPDX-License-Identifier: GPL-2.02/* Copyright (c) 2023 Red Hat, Inc. */3#include <linux/bpf.h>4#include <bpf/bpf_helpers.h>5#include <bpf/bpf_tracing.h>6 7char _license[] SEC("license") = "GPL";8 9/* Dummy fentry bpf prog for testing fentry attachment chains */10SEC("fentry/XXX")11int BPF_PROG(recursive_attach, int a)12{13	return 0;14}15