tc_defact.h 278 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __NET_TC_DEF_H
  3. #define __NET_TC_DEF_H
  4. #include <net/act_api.h>
  5. struct tcf_defact {
  6. struct tc_action common;
  7. u32 tcfd_datalen;
  8. void *tcfd_defdata;
  9. };
  10. #define to_defact(a) ((struct tcf_defact *)a)
  11. #endif /* __NET_TC_DEF_H */