netfilter: conntrack: remove net_id
No users anymore. Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
22fc4c4c9f
commit
751fc301ec
@ -79,7 +79,7 @@ struct nf_conntrack_l4proto {
|
|||||||
/* Print out the private part of the conntrack. */
|
/* Print out the private part of the conntrack. */
|
||||||
void (*print_conntrack)(struct seq_file *s, struct nf_conn *);
|
void (*print_conntrack)(struct seq_file *s, struct nf_conn *);
|
||||||
#endif
|
#endif
|
||||||
unsigned int *net_id;
|
|
||||||
/* Init l4proto pernet data */
|
/* Init l4proto pernet data */
|
||||||
int (*init_net)(struct net *net);
|
int (*init_net)(struct net *net);
|
||||||
|
|
||||||
|
@ -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,
|
static struct nf_proto_net *nf_ct_l4proto_net(struct net *net,
|
||||||
const struct nf_conntrack_l4proto *l4proto)
|
const struct nf_conntrack_l4proto *l4proto)
|
||||||
{
|
{
|
||||||
if (l4proto->get_net_proto) {
|
if (l4proto->get_net_proto)
|
||||||
/* statically built-in protocols use static per-net */
|
|
||||||
return l4proto->get_net_proto(net);
|
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;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user