Commit 8b8237a5 authored by Eric W. Biederman's avatar Eric W. Biederman Committed by Simon Horman

ipvs: Pass ipvs not net to ip_vs_control_net_(init|cleanup)_sysctl

Signed-off-by: default avatar"Eric W. Biederman" <ebiederm@xmission.com>
Acked-by: default avatarJulian Anastasov <ja@ssi.bg>
Signed-off-by: default avatarSimon Horman <horms@verge.net.au>
parent 423b5595
...@@ -3841,10 +3841,10 @@ static void ip_vs_genl_unregister(void) ...@@ -3841,10 +3841,10 @@ static void ip_vs_genl_unregister(void)
* per netns intit/exit func. * per netns intit/exit func.
*/ */
#ifdef CONFIG_SYSCTL #ifdef CONFIG_SYSCTL
static int __net_init ip_vs_control_net_init_sysctl(struct net *net) static int __net_init ip_vs_control_net_init_sysctl(struct netns_ipvs *ipvs)
{ {
struct net *net = ipvs->net;
int idx; int idx;
struct netns_ipvs *ipvs = net_ipvs(net);
struct ctl_table *tbl; struct ctl_table *tbl;
atomic_set(&ipvs->dropentry, 0); atomic_set(&ipvs->dropentry, 0);
...@@ -3926,9 +3926,9 @@ static int __net_init ip_vs_control_net_init_sysctl(struct net *net) ...@@ -3926,9 +3926,9 @@ static int __net_init ip_vs_control_net_init_sysctl(struct net *net)
return 0; return 0;
} }
static void __net_exit ip_vs_control_net_cleanup_sysctl(struct net *net) static void __net_exit ip_vs_control_net_cleanup_sysctl(struct netns_ipvs *ipvs)
{ {
struct netns_ipvs *ipvs = net_ipvs(net); struct net *net = ipvs->net;
cancel_delayed_work_sync(&ipvs->defense_work); cancel_delayed_work_sync(&ipvs->defense_work);
cancel_work_sync(&ipvs->defense_work.work); cancel_work_sync(&ipvs->defense_work.work);
...@@ -3941,8 +3941,8 @@ static void __net_exit ip_vs_control_net_cleanup_sysctl(struct net *net) ...@@ -3941,8 +3941,8 @@ static void __net_exit ip_vs_control_net_cleanup_sysctl(struct net *net)
#else #else
static int __net_init ip_vs_control_net_init_sysctl(struct net *net) { return 0; } static int __net_init ip_vs_control_net_init_sysctl(struct netns_ipvs *ipvs) { return 0; }
static void __net_exit ip_vs_control_net_cleanup_sysctl(struct net *net) { } static void __net_exit ip_vs_control_net_cleanup_sysctl(struct netns_ipvs *ipvs) { }
#endif #endif
...@@ -3984,7 +3984,7 @@ int __net_init ip_vs_control_net_init(struct net *net) ...@@ -3984,7 +3984,7 @@ int __net_init ip_vs_control_net_init(struct net *net)
proc_create("ip_vs_stats_percpu", 0, net->proc_net, proc_create("ip_vs_stats_percpu", 0, net->proc_net,
&ip_vs_stats_percpu_fops); &ip_vs_stats_percpu_fops);
if (ip_vs_control_net_init_sysctl(net)) if (ip_vs_control_net_init_sysctl(ipvs))
goto err; goto err;
return 0; return 0;
...@@ -3999,7 +3999,7 @@ void __net_exit ip_vs_control_net_cleanup(struct net *net) ...@@ -3999,7 +3999,7 @@ void __net_exit ip_vs_control_net_cleanup(struct net *net)
struct netns_ipvs *ipvs = net_ipvs(net); struct netns_ipvs *ipvs = net_ipvs(net);
ip_vs_trash_cleanup(ipvs); ip_vs_trash_cleanup(ipvs);
ip_vs_control_net_cleanup_sysctl(net); ip_vs_control_net_cleanup_sysctl(ipvs);
remove_proc_entry("ip_vs_stats_percpu", net->proc_net); remove_proc_entry("ip_vs_stats_percpu", net->proc_net);
remove_proc_entry("ip_vs_stats", net->proc_net); remove_proc_entry("ip_vs_stats", net->proc_net);
remove_proc_entry("ip_vs", net->proc_net); remove_proc_entry("ip_vs", net->proc_net);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment