diff options
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/netfilter/nf_nat_core.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/ipv4/netfilter/nf_nat_core.c b/net/ipv4/netfilter/nf_nat_core.c index 5156d5d6c3b8..2c01378d3592 100644 --- a/net/ipv4/netfilter/nf_nat_core.c +++ b/net/ipv4/netfilter/nf_nat_core.c | |||
@@ -617,8 +617,8 @@ static int __init nf_nat_init(void) | |||
617 | } | 617 | } |
618 | 618 | ||
619 | /* FIXME: Man, this is a hack. <SIGH> */ | 619 | /* FIXME: Man, this is a hack. <SIGH> */ |
620 | NF_CT_ASSERT(nf_conntrack_destroyed == NULL); | 620 | NF_CT_ASSERT(rcu_dereference(nf_conntrack_destroyed) == NULL); |
621 | nf_conntrack_destroyed = &nf_nat_cleanup_conntrack; | 621 | rcu_assign_pointer(nf_conntrack_destroyed, nf_nat_cleanup_conntrack); |
622 | 622 | ||
623 | /* Initialize fake conntrack so that NAT will skip it */ | 623 | /* Initialize fake conntrack so that NAT will skip it */ |
624 | nf_conntrack_untracked.status |= IPS_NAT_DONE_MASK; | 624 | nf_conntrack_untracked.status |= IPS_NAT_DONE_MASK; |
@@ -642,7 +642,8 @@ static int clean_nat(struct nf_conn *i, void *data) | |||
642 | static void __exit nf_nat_cleanup(void) | 642 | static void __exit nf_nat_cleanup(void) |
643 | { | 643 | { |
644 | nf_ct_iterate_cleanup(&clean_nat, NULL); | 644 | nf_ct_iterate_cleanup(&clean_nat, NULL); |
645 | nf_conntrack_destroyed = NULL; | 645 | rcu_assign_pointer(nf_conntrack_destroyed, NULL); |
646 | synchronize_rcu(); | ||
646 | vfree(bysource); | 647 | vfree(bysource); |
647 | nf_ct_l3proto_put(l3proto); | 648 | nf_ct_l3proto_put(l3proto); |
648 | } | 649 | } |