2010-08-18 13:10:35 +00: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-25 23:09:42 +00:00
|
|
|
struct tc_action common;
|
2010-08-18 13:10:35 +00:00
|
|
|
|
|
|
|
u32 update_flags;
|
|
|
|
};
|
2016-07-25 23:09:41 +00:00
|
|
|
#define to_tcf_csum(a) ((struct tcf_csum *)a)
|
2010-08-18 13:10:35 +00:00
|
|
|
|
|
|
|
#endif /* __NET_TC_CSUM_H */
|