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

Configure Feed

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

at v6.3-rc6 15 lines 213 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#pragma once 3 4#ifndef ETH_P_IP 5#define ETH_P_IP 0x0800 6#endif 7 8#ifndef ETH_P_IPV6 9#define ETH_P_IPV6 0x86DD 10#endif 11 12struct xdp_meta { 13 __u64 rx_timestamp; 14 __u32 rx_hash; 15};