Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __NETNS_FLOW_TABLE_H
0003 #define __NETNS_FLOW_TABLE_H
0004 
0005 struct nf_flow_table_stat {
0006     unsigned int count_wq_add;
0007     unsigned int count_wq_del;
0008     unsigned int count_wq_stats;
0009 };
0010 
0011 struct netns_ft {
0012     struct nf_flow_table_stat __percpu *stat;
0013 };
0014 #endif