summaryrefslogtreecommitdiffstats
path: root/net/openvswitch/conntrack.c
diff options
context:
space:
mode:
authorGao Feng2018-07-09 12:06:33 +0200
committerPablo Neira Ayuso2018-07-18 11:26:42 +0200
commit440534d3c56be04abfb26850ee882d19d223557a (patch)
tree6063b4a09fe44803658419f57f2ebb5da9273f31 /net/openvswitch/conntrack.c
parentipvs: drop conn templates under attack (diff)
downloadkernel-qcow2-linux-440534d3c56be04abfb26850ee882d19d223557a.tar.gz
kernel-qcow2-linux-440534d3c56be04abfb26850ee882d19d223557a.tar.xz
kernel-qcow2-linux-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/openvswitch/conntrack.c')
-rw-r--r--net/openvswitch/conntrack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/conntrack.c b/net/openvswitch/conntrack.c
index e05bd3e53f0f..3e33c382367f 100644
--- a/net/openvswitch/conntrack.c
+++ b/net/openvswitch/conntrack.c
@@ -1303,7 +1303,7 @@ static int ovs_ct_add_helper(struct ovs_conntrack_info *info, const char *name,
return -EINVAL;
}
- help = nf_ct_helper_ext_add(info->ct, helper, GFP_KERNEL);
+ help = nf_ct_helper_ext_add(info->ct, GFP_KERNEL);
if (!help) {
nf_conntrack_helper_put(helper);
return -ENOMEM;