Skip to content

Commit

Permalink
[NETFILTER]: nf_conntrack: move registration of __nf_ct_attach
Browse files Browse the repository at this point in the history
Move registration of __nf_ct_attach to nf_conntrack_core to make it usable
for IPv6 connection tracking as well.

Signed-off-by: Yasuyuki Kozakai <[email protected]>
Signed-off-by: Patrick McHardy <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
yasuyuki5 authored and davem330 committed Feb 15, 2006
1 parent deac0cc commit 7d3cdc6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 0 additions & 5 deletions net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c
Original file line number Diff line number Diff line change
Expand Up @@ -529,15 +529,10 @@ static int init_or_cleanup(int init)
goto cleanup_localinops;
}
#endif

/* For use by REJECT target */
ip_ct_attach = __nf_conntrack_attach;

return ret;

cleanup:
synchronize_net();
ip_ct_attach = NULL;
#ifdef CONFIG_SYSCTL
unregister_sysctl_table(nf_ct_ipv4_sysctl_header);
cleanup_localinops:
Expand Down
5 changes: 5 additions & 0 deletions net/netfilter/nf_conntrack_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1556,6 +1556,8 @@ void nf_conntrack_cleanup(void)
{
int i;

ip_ct_attach = NULL;

/* This makes sure all current packets have passed through
netfilter framework. Roll on, two-stage module
delete... */
Expand Down Expand Up @@ -1715,6 +1717,9 @@ int __init nf_conntrack_init(void)
nf_ct_l3protos[i] = &nf_conntrack_generic_l3proto;
write_unlock_bh(&nf_conntrack_lock);

/* For use by REJECT target */
ip_ct_attach = __nf_conntrack_attach;

/* Set up fake conntrack:
- to never be deleted, not in any hashes */
atomic_set(&nf_conntrack_untracked.ct_general.use, 1);
Expand Down

0 comments on commit 7d3cdc6

Please sign in to comment.