swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: 92e963f50fc74041b5e9e744c330dca48e04f08d authored by Linus Torvalds on 24 January 2016, 21:06:47 UTC
Linux 4.5-rc1
Tip revision: 92e963f
tc_csum.h
#ifndef __NET_TC_CSUM_H
#define __NET_TC_CSUM_H

#include <linux/types.h>
#include <net/act_api.h>

struct tcf_csum {
	struct tcf_common common;

	u32 update_flags;
};
#define to_tcf_csum(a) \
	container_of(a->priv,struct tcf_csum,common)

#endif /* __NET_TC_CSUM_H */
back to top