tc_connmark.h 286 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. struct net *net;
  7. u16 zone;
  8. };
  9. #define to_connmark(a) \
  10. container_of(a->priv, struct tcf_connmark_info, common)
  11. #endif /* __NET_TC_CONNMARK_H */