diff options
author | Hans Schillstrom <hans@schillstrom.com> | 2011-05-01 12:50:16 -0400 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2011-06-13 04:10:09 -0400 |
commit | 503cf15a5ecc0f3f7a05ffe04c89fb7496100ee7 (patch) | |
tree | da33790829b1587261193d1c859da9de3a7035e6 /include/net/ip_vs.h | |
parent | ed78bec4d6873e8971f56557f8ca3bcda38044ea (diff) |
IPVS: rename of netns init and cleanup functions.
Make it more clear what the functions does,
on request by Julian.
Signed-off-by: Hans Schillstrom <hans.schillstrom@ericsson.com>
Signed-off-by: Hans Schillstrom <hans@schillstrom.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'include/net/ip_vs.h')
-rw-r--r-- | include/net/ip_vs.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h index 34a6fa825167..1b0985fca1e2 100644 --- a/include/net/ip_vs.h +++ b/include/net/ip_vs.h | |||
@@ -1087,19 +1087,19 @@ ip_vs_control_add(struct ip_vs_conn *cp, struct ip_vs_conn *ctl_cp) | |||
1087 | /* | 1087 | /* |
1088 | * IPVS netns init & cleanup functions | 1088 | * IPVS netns init & cleanup functions |
1089 | */ | 1089 | */ |
1090 | extern int __ip_vs_estimator_init(struct net *net); | 1090 | extern int ip_vs_estimator_net_init(struct net *net); |
1091 | extern int __ip_vs_control_init(struct net *net); | 1091 | extern int ip_vs_control_net_init(struct net *net); |
1092 | extern int __ip_vs_protocol_init(struct net *net); | 1092 | extern int ip_vs_protocol_net_init(struct net *net); |
1093 | extern int __ip_vs_app_init(struct net *net); | 1093 | extern int ip_vs_app_net_init(struct net *net); |
1094 | extern int __ip_vs_conn_init(struct net *net); | 1094 | extern int ip_vs_conn_net_init(struct net *net); |
1095 | extern int __ip_vs_sync_init(struct net *net); | 1095 | extern int ip_vs_sync_net_init(struct net *net); |
1096 | extern void __ip_vs_conn_cleanup(struct net *net); | 1096 | extern void ip_vs_conn_net_cleanup(struct net *net); |
1097 | extern void __ip_vs_app_cleanup(struct net *net); | 1097 | extern void ip_vs_app_net_cleanup(struct net *net); |
1098 | extern void __ip_vs_protocol_cleanup(struct net *net); | 1098 | extern void ip_vs_protocol_net_cleanup(struct net *net); |
1099 | extern void __ip_vs_control_cleanup(struct net *net); | 1099 | extern void ip_vs_control_net_cleanup(struct net *net); |
1100 | extern void __ip_vs_estimator_cleanup(struct net *net); | 1100 | extern void ip_vs_estimator_net_cleanup(struct net *net); |
1101 | extern void __ip_vs_sync_cleanup(struct net *net); | 1101 | extern void ip_vs_sync_net_cleanup(struct net *net); |
1102 | extern void __ip_vs_service_cleanup(struct net *net); | 1102 | extern void ip_vs_service_net_cleanup(struct net *net); |
1103 | 1103 | ||
1104 | /* | 1104 | /* |
1105 | * IPVS application functions | 1105 | * IPVS application functions |