tc_defact.h 272 B

123456789101112131415
  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(pc) \
  10. container_of(pc, struct tcf_defact, common)
  11. #endif /* __NET_TC_DEF_H */