https://github.com/cilium/cilium
Raw File
Tip revision: 4ceb82a32c73762197df50ce8eb5dc40a795ff18 authored by Maciej Kwiek on 11 December 2023, 14:00:00 UTC
Prepare for release v1.12.17
Tip revision: 4ceb82a
bpf_features.h
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
/* Copyright Authors of Cilium */
#ifndef BPF_FEATURES_H_
#define BPF_FEATURES_H_

#define HAVE_PROG_TYPE_HELPER(prog_type, helper)	\
	BPF__PROG_TYPE_ ## prog_type ## __HELPER_ ## helper
#define BPF__PROG_TYPE_sched_cls__HELPER_bpf_skb_change_tail 1

#endif /* BPF_FEATURES_H_ */
back to top