|
@@ -192,8 +192,7 @@ void nf_conntrack_helper_put(struct nf_conntrack_helper *helper)
|
|
|
EXPORT_SYMBOL_GPL(nf_conntrack_helper_put);
|
|
|
|
|
|
struct nf_conn_help *
|
|
|
-nf_ct_helper_ext_add(struct nf_conn *ct,
|
|
|
- struct nf_conntrack_helper *helper, gfp_t gfp)
|
|
|
+nf_ct_helper_ext_add(struct nf_conn *ct, gfp_t gfp)
|
|
|
{
|
|
|
struct nf_conn_help *help;
|
|
|
|
|
@@ -262,7 +261,7 @@ int __nf_ct_try_assign_helper(struct nf_conn *ct, struct nf_conn *tmpl,
|
|
|
}
|
|
|
|
|
|
if (help == NULL) {
|
|
|
- help = nf_ct_helper_ext_add(ct, helper, flags);
|
|
|
+ help = nf_ct_helper_ext_add(ct, flags);
|
|
|
if (help == NULL)
|
|
|
return -ENOMEM;
|
|
|
} else {
|