Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __NET_TC_CONNMARK_H
0003 #define __NET_TC_CONNMARK_H
0004 
0005 #include <net/act_api.h>
0006 
0007 struct tcf_connmark_info {
0008     struct tc_action common;
0009     struct net *net;
0010     u16 zone;
0011 };
0012 
0013 #define to_connmark(a) ((struct tcf_connmark_info *)a)
0014 
0015 #endif /* __NET_TC_CONNMARK_H */