base: Export platform_msi_domain_[alloc,free]_irqs
[linux/fpc-iii.git] / include / net / netns / nftables.h
blobc807811460191dd20c1ba13eb5be8e6555c97167
1 #ifndef _NETNS_NFTABLES_H_
2 #define _NETNS_NFTABLES_H_
4 #include <linux/list.h>
6 struct nft_af_info;
8 struct netns_nftables {
9 struct list_head af_info;
10 struct list_head commit_list;
11 struct nft_af_info *ipv4;
12 struct nft_af_info *ipv6;
13 struct nft_af_info *inet;
14 struct nft_af_info *arp;
15 struct nft_af_info *bridge;
16 struct nft_af_info *netdev;
17 unsigned int base_seq;
18 u8 gencursor;
21 #endif