tc_connmark.h 268 B

123456789101112131415
  1. #ifndef __NET_TC_CONNMARK_H
  2. #define __NET_TC_CONNMARK_H
  3. #include <net/act_api.h>
  4. struct tcf_connmark_info {
  5. struct tcf_common common;
  6. u16 zone;
  7. };
  8. #define to_connmark(a) \
  9. container_of(a->priv, struct tcf_connmark_info, common)
  10. #endif /* __NET_TC_CONNMARK_H */