浏览代码

openvswitch: Free tmpl with tmpl_free.

When an error occurs during conntrack template creation as part of
actions validation, we need to free the template. Previously we've been
using nf_ct_put() to do this, but nf_ct_tmpl_free() is more appropriate.

Signed-off-by: Joe Stringer <joe@ovn.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Joe Stringer 9 年之前
父节点
当前提交
76644232e6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      net/openvswitch/conntrack.c

+ 1 - 1
net/openvswitch/conntrack.c

@@ -1367,7 +1367,7 @@ static void __ovs_ct_free_action(struct ovs_conntrack_info *ct_info)
 	if (ct_info->helper)
 	if (ct_info->helper)
 		module_put(ct_info->helper->me);
 		module_put(ct_info->helper->me);
 	if (ct_info->ct)
 	if (ct_info->ct)
-		nf_ct_put(ct_info->ct);
+		nf_ct_tmpl_free(ct_info->ct);
 }
 }
 
 
 void ovs_ct_init(struct net *net)
 void ovs_ct_init(struct net *net)