tc_defact.h 239 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 tc_action common;
  6. u32 tcfd_datalen;
  7. void *tcfd_defdata;
  8. };
  9. #define to_defact(a) ((struct tcf_defact *)a)
  10. #endif /* __NET_TC_DEF_H */