mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 15:50:57 +07:00
ipvs: Pass ipvs not net to ip_vs_sync_net_init
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com> Acked-by: Julian Anastasov <ja@ssi.bg> Signed-off-by: Simon Horman <horms@verge.net.au>
This commit is contained in:
parent
1fc12004d2
commit
802cb43703
@ -1328,7 +1328,7 @@ int ip_vs_control_net_init(struct net *net);
|
||||
int ip_vs_protocol_net_init(struct net *net);
|
||||
int ip_vs_app_net_init(struct net *net);
|
||||
int ip_vs_conn_net_init(struct net *net);
|
||||
int ip_vs_sync_net_init(struct net *net);
|
||||
int ip_vs_sync_net_init(struct netns_ipvs *ipvs);
|
||||
void ip_vs_conn_net_cleanup(struct net *net);
|
||||
void ip_vs_app_net_cleanup(struct net *net);
|
||||
void ip_vs_protocol_net_cleanup(struct net *net);
|
||||
|
@ -2087,7 +2087,7 @@ static int __net_init __ip_vs_init(struct net *net)
|
||||
if (ip_vs_conn_net_init(net) < 0)
|
||||
goto conn_fail;
|
||||
|
||||
if (ip_vs_sync_net_init(net) < 0)
|
||||
if (ip_vs_sync_net_init(ipvs) < 0)
|
||||
goto sync_fail;
|
||||
|
||||
printk(KERN_INFO "IPVS: Creating netns size=%zu id=%d\n",
|
||||
|
@ -2007,10 +2007,8 @@ int stop_sync_thread(struct netns_ipvs *ipvs, int state)
|
||||
/*
|
||||
* Initialize data struct for each netns
|
||||
*/
|
||||
int __net_init ip_vs_sync_net_init(struct net *net)
|
||||
int __net_init ip_vs_sync_net_init(struct netns_ipvs *ipvs)
|
||||
{
|
||||
struct netns_ipvs *ipvs = net_ipvs(net);
|
||||
|
||||
__mutex_init(&ipvs->sync_mutex, "ipvs->sync_mutex", &__ipvs_sync_key);
|
||||
spin_lock_init(&ipvs->sync_lock);
|
||||
spin_lock_init(&ipvs->sync_buff_lock);
|
||||
|
Loading…
Reference in New Issue
Block a user