1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 #ifndef _LINUX_NETDEVICE_XMIT_H 3 #define _LINUX_NETDEVICE_XMIT_H 4 5 struct netdev_xmit { 6 u16 recursion; 7 u8 more; 8 #ifdef CONFIG_NET_EGRESS 9 u8 skip_txqueue; 10 #endif 11 #if IS_ENABLED(CONFIG_NET_ACT_MIRRED) 12 u8 sched_mirred_nest; 13 #endif 14 #if IS_ENABLED(CONFIG_NF_DUP_NETDEV) 15 u8 nf_dup_skb_recursion; 16 #endif 17 }; 18 19 #endif 20