aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/ip_vs.h
diff options
context:
space:
mode:
authorHans Schillstrom <hans@schillstrom.com>2011-05-01 12:50:16 -0400
committerSimon Horman <horms@verge.net.au>2011-06-13 04:10:09 -0400
commit503cf15a5ecc0f3f7a05ffe04c89fb7496100ee7 (patch)
treeda33790829b1587261193d1c859da9de3a7035e6 /include/net/ip_vs.h
parented78bec4d6873e8971f56557f8ca3bcda38044ea (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.h26
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 */
1090extern int __ip_vs_estimator_init(struct net *net); 1090extern int ip_vs_estimator_net_init(struct net *net);
1091extern int __ip_vs_control_init(struct net *net); 1091extern int ip_vs_control_net_init(struct net *net);
1092extern int __ip_vs_protocol_init(struct net *net); 1092extern int ip_vs_protocol_net_init(struct net *net);
1093extern int __ip_vs_app_init(struct net *net); 1093extern int ip_vs_app_net_init(struct net *net);
1094extern int __ip_vs_conn_init(struct net *net); 1094extern int ip_vs_conn_net_init(struct net *net);
1095extern int __ip_vs_sync_init(struct net *net); 1095extern int ip_vs_sync_net_init(struct net *net);
1096extern void __ip_vs_conn_cleanup(struct net *net); 1096extern void ip_vs_conn_net_cleanup(struct net *net);
1097extern void __ip_vs_app_cleanup(struct net *net); 1097extern void ip_vs_app_net_cleanup(struct net *net);
1098extern void __ip_vs_protocol_cleanup(struct net *net); 1098extern void ip_vs_protocol_net_cleanup(struct net *net);
1099extern void __ip_vs_control_cleanup(struct net *net); 1099extern void ip_vs_control_net_cleanup(struct net *net);
1100extern void __ip_vs_estimator_cleanup(struct net *net); 1100extern void ip_vs_estimator_net_cleanup(struct net *net);
1101extern void __ip_vs_sync_cleanup(struct net *net); 1101extern void ip_vs_sync_net_cleanup(struct net *net);
1102extern void __ip_vs_service_cleanup(struct net *net); 1102extern void ip_vs_service_net_cleanup(struct net *net);
1103 1103
1104/* 1104/*
1105 * IPVS application functions 1105 * IPVS application functions