tc_defact.h 276 B

1234567891011121314
  1. #ifndef __NET_TC_DEF_H
  2. #define __NET_TC_DEF_H
  3. #include <net/act_api.h>
  4. struct tcf_defact {
  5. struct tcf_common common;
  6. u32 tcfd_datalen;
  7. void *tcfd_defdata;
  8. };
  9. #define to_defact(a) \
  10. container_of(a->priv, struct tcf_defact, common)
  11. #endif /* __NET_TC_DEF_H */