|
@@ -614,7 +614,7 @@ static void ip_vs_sync_conn_v0(struct netns_ipvs *ipvs, struct ip_vs_conn *cp,
|
|
|
pkts = atomic_add_return(1, &cp->in_pkts);
|
|
|
else
|
|
|
pkts = sysctl_sync_threshold(ipvs);
|
|
|
- ip_vs_sync_conn(ipvs->net, cp, pkts);
|
|
|
+ ip_vs_sync_conn(ipvs, cp, pkts);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -623,9 +623,8 @@ static void ip_vs_sync_conn_v0(struct netns_ipvs *ipvs, struct ip_vs_conn *cp,
|
|
|
* Called by ip_vs_in.
|
|
|
* Sending Version 1 messages
|
|
|
*/
|
|
|
-void ip_vs_sync_conn(struct net *net, struct ip_vs_conn *cp, int pkts)
|
|
|
+void ip_vs_sync_conn(struct netns_ipvs *ipvs, struct ip_vs_conn *cp, int pkts)
|
|
|
{
|
|
|
- struct netns_ipvs *ipvs = net_ipvs(net);
|
|
|
struct ip_vs_sync_mesg *m;
|
|
|
union ip_vs_sync_conn *s;
|
|
|
struct ip_vs_sync_buff *buff;
|