blob: fa8f5fac65e959bff4458cd3e7cce6005bd08533 [file] [log] [blame]
Grégoire Baroneb4d4062010-08-18 13:10:35 +00001#ifndef __NET_TC_CSUM_H
2#define __NET_TC_CSUM_H
3
4#include <linux/types.h>
5#include <net/act_api.h>
6
7struct tcf_csum {
8 struct tcf_common common;
9
10 u32 update_flags;
11};
WANG Cong86062032014-02-11 17:07:31 -080012#define to_tcf_csum(a) \
13 container_of(a->priv,struct tcf_csum,common)
Grégoire Baroneb4d4062010-08-18 13:10:35 +000014
15#endif /* __NET_TC_CSUM_H */