Commit 048cf48b authored by Sven Wegener's avatar Sven Wegener

ipvs: Annotate init functions with __init

Being able to discard these functions saves a couple of bytes at runtime. The
cleanup functions can't be annotated with __exit as they are also called from
init functions.
Signed-off-by: default avatarSven Wegener <sven.wegener@stealer.net>
Acked-by: default avatarSimon Horman <horms@verge.net.au>
parent d149ccc9
...@@ -608,7 +608,7 @@ int ip_vs_skb_replace(struct sk_buff *skb, gfp_t pri, ...@@ -608,7 +608,7 @@ int ip_vs_skb_replace(struct sk_buff *skb, gfp_t pri,
} }
int ip_vs_app_init(void) int __init ip_vs_app_init(void)
{ {
/* we will replace it with proc_net_ipvs_create() soon */ /* we will replace it with proc_net_ipvs_create() soon */
proc_net_fops_create(&init_net, "ip_vs_app", 0, &ip_vs_app_fops); proc_net_fops_create(&init_net, "ip_vs_app", 0, &ip_vs_app_fops);
......
...@@ -965,7 +965,7 @@ static void ip_vs_conn_flush(void) ...@@ -965,7 +965,7 @@ static void ip_vs_conn_flush(void)
} }
int ip_vs_conn_init(void) int __init ip_vs_conn_init(void)
{ {
int idx; int idx;
......
...@@ -2306,7 +2306,7 @@ static struct nf_sockopt_ops ip_vs_sockopts = { ...@@ -2306,7 +2306,7 @@ static struct nf_sockopt_ops ip_vs_sockopts = {
}; };
int ip_vs_control_init(void) int __init ip_vs_control_init(void)
{ {
int ret; int ret;
int idx; int idx;
......
...@@ -43,7 +43,7 @@ static struct ip_vs_protocol *ip_vs_proto_table[IP_VS_PROTO_TAB_SIZE]; ...@@ -43,7 +43,7 @@ static struct ip_vs_protocol *ip_vs_proto_table[IP_VS_PROTO_TAB_SIZE];
/* /*
* register an ipvs protocol * register an ipvs protocol
*/ */
static int __used register_ip_vs_protocol(struct ip_vs_protocol *pp) static int __used __init register_ip_vs_protocol(struct ip_vs_protocol *pp)
{ {
unsigned hash = IP_VS_PROTO_HASH(pp->protocol); unsigned hash = IP_VS_PROTO_HASH(pp->protocol);
...@@ -190,7 +190,7 @@ ip_vs_tcpudp_debug_packet(struct ip_vs_protocol *pp, ...@@ -190,7 +190,7 @@ ip_vs_tcpudp_debug_packet(struct ip_vs_protocol *pp,
} }
int ip_vs_protocol_init(void) int __init ip_vs_protocol_init(void)
{ {
char protocols[64]; char protocols[64];
#define REGISTER_PROTOCOL(p) \ #define REGISTER_PROTOCOL(p) \
......
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