Commit 7f18c9e6 authored by Adrian Bunk's avatar Adrian Bunk Committed by Thomas Graf

[IPVS]: Make needlessly global code static.

Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent be4c1cef
...@@ -65,7 +65,7 @@ static inline void ip_vs_app_put(struct ip_vs_app *app) ...@@ -65,7 +65,7 @@ static inline void ip_vs_app_put(struct ip_vs_app *app)
/* /*
* Allocate/initialize app incarnation and register it in proto apps. * Allocate/initialize app incarnation and register it in proto apps.
*/ */
int static int
ip_vs_app_inc_new(struct ip_vs_app *app, __u16 proto, __u16 port) ip_vs_app_inc_new(struct ip_vs_app *app, __u16 proto, __u16 port)
{ {
struct ip_vs_protocol *pp; struct ip_vs_protocol *pp;
......
...@@ -64,7 +64,7 @@ struct ip_vs_aligned_lock ...@@ -64,7 +64,7 @@ struct ip_vs_aligned_lock
} __attribute__((__aligned__(SMP_CACHE_BYTES))); } __attribute__((__aligned__(SMP_CACHE_BYTES)));
/* lock array for conn table */ /* lock array for conn table */
struct ip_vs_aligned_lock static struct ip_vs_aligned_lock
__ip_vs_conntbl_lock_array[CT_LOCKARRAY_SIZE] __cacheline_aligned; __ip_vs_conntbl_lock_array[CT_LOCKARRAY_SIZE] __cacheline_aligned;
static inline void ct_read_lock(unsigned key) static inline void ct_read_lock(unsigned key)
......
...@@ -62,7 +62,7 @@ static spinlock_t __ip_vs_droppacket_lock = SPIN_LOCK_UNLOCKED; ...@@ -62,7 +62,7 @@ static spinlock_t __ip_vs_droppacket_lock = SPIN_LOCK_UNLOCKED;
/* 1/rate drop and drop-entry variables */ /* 1/rate drop and drop-entry variables */
int ip_vs_drop_rate = 0; int ip_vs_drop_rate = 0;
int ip_vs_drop_counter = 0; int ip_vs_drop_counter = 0;
atomic_t ip_vs_dropentry = ATOMIC_INIT(0); static atomic_t ip_vs_dropentry = ATOMIC_INIT(0);
/* number of virtual services */ /* number of virtual services */
static int ip_vs_num_services = 0; static int ip_vs_num_services = 0;
......
...@@ -45,7 +45,7 @@ static struct ip_vs_protocol *ip_vs_proto_table[IP_VS_PROTO_TAB_SIZE]; ...@@ -45,7 +45,7 @@ static struct ip_vs_protocol *ip_vs_proto_table[IP_VS_PROTO_TAB_SIZE];
/* /*
* register an ipvs protocol * register an ipvs protocol
*/ */
int register_ip_vs_protocol(struct ip_vs_protocol *pp) static int 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);
...@@ -62,7 +62,7 @@ int register_ip_vs_protocol(struct ip_vs_protocol *pp) ...@@ -62,7 +62,7 @@ int register_ip_vs_protocol(struct ip_vs_protocol *pp)
/* /*
* unregister an ipvs protocol * unregister an ipvs protocol
*/ */
int unregister_ip_vs_protocol(struct ip_vs_protocol *pp) static int unregister_ip_vs_protocol(struct ip_vs_protocol *pp)
{ {
struct ip_vs_protocol **pp_p; struct ip_vs_protocol **pp_p;
unsigned hash = IP_VS_PROTO_HASH(pp->protocol); unsigned hash = IP_VS_PROTO_HASH(pp->protocol);
......
...@@ -22,7 +22,7 @@ static int icmp_timeouts[1] = { 1*60*HZ }; ...@@ -22,7 +22,7 @@ static int icmp_timeouts[1] = { 1*60*HZ };
static char * icmp_state_name_table[1] = { "ICMP" }; static char * icmp_state_name_table[1] = { "ICMP" };
struct ip_vs_conn * static struct ip_vs_conn *
icmp_conn_in_get(const struct sk_buff *skb, icmp_conn_in_get(const struct sk_buff *skb,
struct ip_vs_protocol *pp, struct ip_vs_protocol *pp,
const struct iphdr *iph, const struct iphdr *iph,
...@@ -49,7 +49,7 @@ icmp_conn_in_get(const struct sk_buff *skb, ...@@ -49,7 +49,7 @@ icmp_conn_in_get(const struct sk_buff *skb,
#endif #endif
} }
struct ip_vs_conn * static struct ip_vs_conn *
icmp_conn_out_get(const struct sk_buff *skb, icmp_conn_out_get(const struct sk_buff *skb,
struct ip_vs_protocol *pp, struct ip_vs_protocol *pp,
const struct iphdr *iph, const struct iphdr *iph,
......
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