Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.12-rc6 13 lines 223 B view raw
1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2#ifndef _LINUX_NETDEVICE_XMIT_H 3#define _LINUX_NETDEVICE_XMIT_H 4 5struct netdev_xmit { 6 u16 recursion; 7 u8 more; 8#ifdef CONFIG_NET_EGRESS 9 u8 skip_txqueue; 10#endif 11}; 12 13#endif