diff options
author | Florian Westphal | 2021-07-22 10:48:34 +0200 |
---|---|---|
committer | Pablo Neira Ayuso | 2021-08-01 12:00:51 +0200 |
commit | f2e3778db7e13fd9a83c309dd8c9fbe69ba8efbe (patch) | |
tree | 6dd7423f111b5ca94e3d41397cb42e8e14837260 /include/net/netns | |
parent | ded2d10e9ad816e1f962def22191e38ebfb4bb11 (diff) |
netfilter: remove xt pernet data
clusterip is now handled via net_generic.
NOTRACK is tiny compared to rest of xt_CT feature set, even the existing
deprecation warning is bigger than the actual functionality.
Just remove the warning, its not worth keeping/adding a net_generic one.
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/net/netns')
-rw-r--r-- | include/net/netns/x_tables.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/net/netns/x_tables.h b/include/net/netns/x_tables.h deleted file mode 100644 index d02316ec2906..000000000000 --- a/include/net/netns/x_tables.h +++ /dev/null @@ -1,12 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -#ifndef __NETNS_X_TABLES_H -#define __NETNS_X_TABLES_H - -#include <linux/list.h> -#include <linux/netfilter_defs.h> - -struct netns_xt { - bool notrack_deprecated_warning; - bool clusterip_deprecated_warning; -}; -#endif |