diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2015-09-21 18:01:44 (GMT) |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2015-09-24 00:34:33 (GMT) |
commit | 3109d2f2d1fe068f1cc3b1f74f5022ab4aef52a7 (patch) | |
tree | e3641b886509b166fbba1a68c28d77481bbd8210 /include/net | |
parent | 19913dec1bc1d1aa5afe26db858507d4c3042665 (diff) | |
download | linux-3109d2f2d1fe068f1cc3b1f74f5022ab4aef52a7.tar.xz |
ipvs: Store ipvs not net in struct ip_vs_service
In practice struct netns_ipvs is as meaningful as struct net and more
useful as it holds the ipvs specific data. So store a pointer to
struct netns_ipvs.
Update the accesses of param->net to access param->ipvs->net instead.
In functions where we are searching for an svc and filtering by net
filter by ipvs instead.
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>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/ip_vs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h index 83e2aea..2c22380 100644 --- a/include/net/ip_vs.h +++ b/include/net/ip_vs.h @@ -678,7 +678,7 @@ struct ip_vs_service { unsigned int flags; /* service status flags */ unsigned int timeout; /* persistent timeout in ticks */ __be32 netmask; /* grouping granularity, mask/plen */ - struct net *net; + struct netns_ipvs *ipvs; struct list_head destinations; /* real server d-linked list */ __u32 num_dests; /* number of servers */ |