]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/net/netns/x_tables.h
be2net: Fix driver load for VFs for Lancer
[mirror_ubuntu-bionic-kernel.git] / include / net / netns / x_tables.h
CommitLineData
8d870052
AD
1#ifndef __NETNS_X_TABLES_H
2#define __NETNS_X_TABLES_H
3
4#include <linux/list.h>
10a03a42 5#include <linux/netfilter.h>
8d870052 6
8157e6d1
AD
7struct ebt_table;
8
8d870052 9struct netns_xt {
10a03a42 10 struct list_head tables[NFPROTO_NUMPROTO];
e04af024
CG
11#if defined(CONFIG_BRIDGE_NF_EBTABLES) || \
12 defined(CONFIG_BRIDGE_NF_EBTABLES_MODULE)
8157e6d1 13 struct ebt_table *broute_table;
4aad1093 14 struct ebt_table *frame_filter;
b71b30a6 15 struct ebt_table *frame_nat;
e04af024 16#endif
8d870052
AD
17};
18#endif