tc_connmark.h 297 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __NET_TC_CONNMARK_H
  3. #define __NET_TC_CONNMARK_H
  4. #include <net/act_api.h>
  5. struct tcf_connmark_info {
  6. struct tc_action common;
  7. struct net *net;
  8. u16 zone;
  9. };
  10. #define to_connmark(a) ((struct tcf_connmark_info *)a)
  11. #endif /* __NET_TC_CONNMARK_H */