https://github.com/cilium/cilium
Raw File
Tip revision: d3ddb759300611dbc873cb51afe23a89762c56e2 authored by Daniel Borkmann on 05 October 2020, 15:23:12 UTC
test
Tip revision: d3ddb75
bpf_features.h
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (C) 2016-2020 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