Revision d75aa385a9fee027b9d35f96e63e5f78c12c8f50 authored by Martynas Pumputis on 22 November 2021, 19:12:17 UTC, committed by Martynas Pumputis on 23 November 2021, 15:36:25 UTC
Signed-off-by: Martynas Pumputis <m@lambda.lt>
1 parent ef1068f
Raw File
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