diff options
author | 2021-04-01 16:11:14 +0200 | |
---|---|---|
committer | 2021-04-06 00:34:53 +0200 | |
commit | db3685b4046f8b629bbf73caa33751ce567ea8ff (patch) | |
tree | a7294c478cc84557f51b0e8779e825dd14239d54 /include/net/net_namespace.h | |
parent | netfilter: conntrack: move ecache dwork to net_generic infra (diff) | |
download | wireguard-linux-db3685b4046f8b629bbf73caa33751ce567ea8ff.tar.xz wireguard-linux-db3685b4046f8b629bbf73caa33751ce567ea8ff.zip |
net: remove obsolete members from struct net
all have been moved to generic_net infra. On x86_64, this reduces
struct net size from 70 to 63 cache lines (4480 to 4032 byte).
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/net/net_namespace.h')
-rw-r--r-- | include/net/net_namespace.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h index dcaee24a4d87..fdb16dc33703 100644 --- a/include/net/net_namespace.h +++ b/include/net/net_namespace.h @@ -142,15 +142,6 @@ struct net { #if defined(CONFIG_NF_TABLES) || defined(CONFIG_NF_TABLES_MODULE) struct netns_nftables nft; #endif -#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6) - struct netns_nf_frag nf_frag; - struct ctl_table_header *nf_frag_frags_hdr; -#endif - struct sock *nfnl; - struct sock *nfnl_stash; -#if IS_ENABLED(CONFIG_NF_CT_NETLINK_TIMEOUT) - struct list_head nfct_timeout_list; -#endif #endif #ifdef CONFIG_WEXT_CORE struct sk_buff_head wext_nlevents; |