https://github.com/cilium/cilium
Raw File
Tip revision: ae6405e364c757944cef6982d57d485b93666226 authored by Martynas Pumputis on 05 October 2022, 12:46:42 UTC
WIP
Tip revision: ae6405e
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