Blame include/uapi/linux/tc_act/tc_sample.h

Packit Service 3880ab
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
Packit Service 3880ab
#ifndef __LINUX_TC_SAMPLE_H
Packit Service 3880ab
#define __LINUX_TC_SAMPLE_H
Packit Service 3880ab
Packit Service 3880ab
#include <linux/types.h>
Packit Service 3880ab
#include <linux/pkt_cls.h>
Packit Service 3880ab
#include <linux/if_ether.h>
Packit Service 3880ab
Packit Service 3880ab
struct tc_sample {
Packit Service 3880ab
	tc_gen;
Packit Service 3880ab
};
Packit Service 3880ab
Packit Service 3880ab
enum {
Packit Service 3880ab
	TCA_SAMPLE_UNSPEC,
Packit Service 3880ab
	TCA_SAMPLE_TM,
Packit Service 3880ab
	TCA_SAMPLE_PARMS,
Packit Service 3880ab
	TCA_SAMPLE_RATE,
Packit Service 3880ab
	TCA_SAMPLE_TRUNC_SIZE,
Packit Service 3880ab
	TCA_SAMPLE_PSAMPLE_GROUP,
Packit Service 3880ab
	TCA_SAMPLE_PAD,
Packit Service 3880ab
	__TCA_SAMPLE_MAX
Packit Service 3880ab
};
Packit Service 3880ab
#define TCA_SAMPLE_MAX (__TCA_SAMPLE_MAX - 1)
Packit Service 3880ab
Packit Service 3880ab
#endif