2010-08-18 21:10:35 +08:00
|
|
|
#ifndef __NET_TC_CSUM_H
|
|
|
|
#define __NET_TC_CSUM_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <net/act_api.h>
|
|
|
|
|
|
|
|
struct tcf_csum {
|
2016-07-26 07:09:42 +08:00
|
|
|
struct tc_action common;
|
2010-08-18 21:10:35 +08:00
|
|
|
|
|
|
|
u32 update_flags;
|
|
|
|
};
|
2016-07-26 07:09:41 +08:00
|
|
|
#define to_tcf_csum(a) ((struct tcf_csum *)a)
|
2010-08-18 21:10:35 +08:00
|
|
|
|
|
|
|
#endif /* __NET_TC_CSUM_H */
|