aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/netfilter/nf_conntrack_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nf_conntrack_core.c b/net/netfilter/nf_conntrack_core.c
index 55befe59e1c0..54e983f13898 100644
--- a/net/netfilter/nf_conntrack_core.c
+++ b/net/netfilter/nf_conntrack_core.c
@@ -1121,7 +1121,7 @@ int nf_conntrack_set_hashsize(const char *val, struct kernel_param *kp)
1121 struct nf_conntrack_tuple_hash, hnode); 1121 struct nf_conntrack_tuple_hash, hnode);
1122 hlist_del_rcu(&h->hnode); 1122 hlist_del_rcu(&h->hnode);
1123 bucket = __hash_conntrack(&h->tuple, hashsize, rnd); 1123 bucket = __hash_conntrack(&h->tuple, hashsize, rnd);
1124 hlist_add_head(&h->hnode, &hash[bucket]); 1124 hlist_add_head_rcu(&h->hnode, &hash[bucket]);
1125 } 1125 }
1126 } 1126 }
1127 old_size = nf_conntrack_htable_size; 1127 old_size = nf_conntrack_htable_size;