aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/nft_ct.c
diff options
context:
space:
mode:
authorGao Feng <gfree.wind@vip.163.com>2018-07-09 18:06:33 +0800
committerPablo Neira Ayuso <pablo@netfilter.org>2018-07-18 11:26:42 +0200
commit440534d3c56be04abfb26850ee882d19d223557a (patch)
tree6063b4a09fe44803658419f57f2ebb5da9273f31 /net/netfilter/nft_ct.c
parentipvs: drop conn templates under attack (diff)
downloadlinux-dev-440534d3c56be04abfb26850ee882d19d223557a.tar.xz
linux-dev-440534d3c56be04abfb26850ee882d19d223557a.zip
netfilter: Remove useless param helper of nf_ct_helper_ext_add
The param helper of nf_ct_helper_ext_add is useless now, then remove it now. Signed-off-by: Gao Feng <gfree.wind@vip.163.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nft_ct.c')
-rw-r--r--net/netfilter/nft_ct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nft_ct.c b/net/netfilter/nft_ct.c
index 1435ffc5f57e..3bc82ee5464d 100644
--- a/net/netfilter/nft_ct.c
+++ b/net/netfilter/nft_ct.c
@@ -870,7 +870,7 @@ static void nft_ct_helper_obj_eval(struct nft_object *obj,
if (test_bit(IPS_HELPER_BIT, &ct->status))
return;
- help = nf_ct_helper_ext_add(ct, to_assign, GFP_ATOMIC);
+ help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
if (help) {
rcu_assign_pointer(help->helper, to_assign);
set_bit(IPS_HELPER_BIT, &ct->status);