https://github.com/cilium/cilium
Raw File
Tip revision: 43f2f74a805ad62e052941eb5feeead072843008 authored by Nicolas Busseneau on 30 June 2021, 14:41:04 UTC
workflows: fix concurrency group names
Tip revision: 43f2f74
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