License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / include / net / netns / nftables.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
99633ab2
PNA
2#ifndef _NETNS_NFTABLES_H_
3#define _NETNS_NFTABLES_H_
4
5#include <linux/list.h>
6
7struct nft_af_info;
8
9struct netns_nftables {
10 struct list_head af_info;
0628b123 11 struct list_head commit_list;
99633ab2
PNA
12 struct nft_af_info *ipv4;
13 struct nft_af_info *ipv6;
1d49144c 14 struct nft_af_info *inet;
ed683f13 15 struct nft_af_info *arp;
99633ab2 16 struct nft_af_info *bridge;
ed6c4136 17 struct nft_af_info *netdev;
38e029f1 18 unsigned int base_seq;
0628b123 19 u8 gencursor;
99633ab2
PNA
20};
21
22#endif