tc_csum.h 243 B

123456789101112131415
  1. #ifndef __NET_TC_CSUM_H
  2. #define __NET_TC_CSUM_H
  3. #include <linux/types.h>
  4. #include <net/act_api.h>
  5. struct tcf_csum {
  6. struct tc_action common;
  7. u32 update_flags;
  8. };
  9. #define to_tcf_csum(a) ((struct tcf_csum *)a)
  10. #endif /* __NET_TC_CSUM_H */