aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/openvswitch/conntrack.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/openvswitch/conntrack.c b/net/openvswitch/conntrack.c
index 0aeb34c6389d..35ae64cbef33 100644
--- a/net/openvswitch/conntrack.c
+++ b/net/openvswitch/conntrack.c
@@ -1312,6 +1312,10 @@ static int ovs_ct_add_helper(struct ovs_conntrack_info *info, const char *name,
1312 1312
1313 rcu_assign_pointer(help->helper, helper); 1313 rcu_assign_pointer(help->helper, helper);
1314 info->helper = helper; 1314 info->helper = helper;
1315
1316 if (info->nat)
1317 request_module("ip_nat_%s", name);
1318
1315 return 0; 1319 return 0;
1316} 1320}
1317 1321