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 v5.7 14 lines 255 B view raw
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2#ifndef __LINUX_TC_EM_NBYTE_H 3#define __LINUX_TC_EM_NBYTE_H 4 5#include <linux/types.h> 6#include <linux/pkt_cls.h> 7 8struct tcf_em_nbyte { 9 __u16 off; 10 __u16 len:12; 11 __u8 layer:4; 12}; 13 14#endif