From: Florian Westphal <f...@strlen.de>

No users anymore.

Signed-off-by: Florian Westphal <f...@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pa...@netfilter.org>
---
 include/net/netfilter/nf_conntrack_l4proto.h | 2 +-
 net/netfilter/nf_conntrack_proto.c           | 8 ++------
 2 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/include/net/netfilter/nf_conntrack_l4proto.h 
b/include/net/netfilter/nf_conntrack_l4proto.h
index fded3f164dcc..3585f8666fc0 100644
--- a/include/net/netfilter/nf_conntrack_l4proto.h
+++ b/include/net/netfilter/nf_conntrack_l4proto.h
@@ -79,7 +79,7 @@ struct nf_conntrack_l4proto {
        /* Print out the private part of the conntrack. */
        void (*print_conntrack)(struct seq_file *s, struct nf_conn *);
 #endif
-       unsigned int    *net_id;
+
        /* Init l4proto pernet data */
        int (*init_net)(struct net *net);
 
diff --git a/net/netfilter/nf_conntrack_proto.c 
b/net/netfilter/nf_conntrack_proto.c
index e113bb2dc88d..47b9294a86f7 100644
--- a/net/netfilter/nf_conntrack_proto.c
+++ b/net/netfilter/nf_conntrack_proto.c
@@ -163,13 +163,9 @@ static int kill_l4proto(struct nf_conn *i, void *data)
 static struct nf_proto_net *nf_ct_l4proto_net(struct net *net,
                                const struct nf_conntrack_l4proto *l4proto)
 {
-       if (l4proto->get_net_proto) {
-               /* statically built-in protocols use static per-net */
+       if (l4proto->get_net_proto)
                return l4proto->get_net_proto(net);
-       } else if (l4proto->net_id) {
-               /* ... and loadable protocols use dynamic per-net */
-               return net_generic(net, *l4proto->net_id);
-       }
+
        return NULL;
 }
 
-- 
2.11.0

Reply via email to