tc_csum.h 269 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 tcf_common common;
  7. u32 update_flags;
  8. };
  9. #define to_tcf_csum(a) \
  10. container_of(a->priv,struct tcf_csum,common)
  11. #endif /* __NET_TC_CSUM_H */