flow_table.h 287 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __NETNS_FLOW_TABLE_H
  3. #define __NETNS_FLOW_TABLE_H
  4. struct nf_flow_table_stat {
  5. unsigned int count_wq_add;
  6. unsigned int count_wq_del;
  7. unsigned int count_wq_stats;
  8. };
  9. struct netns_ft {
  10. struct nf_flow_table_stat __percpu *stat;
  11. };
  12. #endif