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 v4.16-rc7 15 lines 297 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __NET_TC_CONNMARK_H 3#define __NET_TC_CONNMARK_H 4 5#include <net/act_api.h> 6 7struct tcf_connmark_info { 8 struct tc_action common; 9 struct net *net; 10 u16 zone; 11}; 12 13#define to_connmark(a) ((struct tcf_connmark_info *)a) 14 15#endif /* __NET_TC_CONNMARK_H */