Browse Source

[INET_SOCK]: make net/ipv4/inet_timewait_sock.c:__inet_twsk_kill() static

This patch makes the needlessly global __inet_twsk_kill() static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Adrian Bunk 18 năm trước cách đây
mục cha
commit
acd159b6b5

+ 0 - 3
include/net/inet_timewait_sock.h

@@ -209,9 +209,6 @@ static inline void inet_twsk_put(struct inet_timewait_sock *tw)
 extern struct inet_timewait_sock *inet_twsk_alloc(const struct sock *sk,
 extern struct inet_timewait_sock *inet_twsk_alloc(const struct sock *sk,
 						  const int state);
 						  const int state);
 
 
-extern void __inet_twsk_kill(struct inet_timewait_sock *tw,
-			     struct inet_hashinfo *hashinfo);
-
 extern void __inet_twsk_hashdance(struct inet_timewait_sock *tw,
 extern void __inet_twsk_hashdance(struct inet_timewait_sock *tw,
 				  struct sock *sk,
 				  struct sock *sk,
 				  struct inet_hashinfo *hashinfo);
 				  struct inet_hashinfo *hashinfo);

+ 2 - 3
net/ipv4/inet_timewait_sock.c

@@ -14,7 +14,8 @@
 #include <net/ip.h>
 #include <net/ip.h>
 
 
 /* Must be called with locally disabled BHs. */
 /* Must be called with locally disabled BHs. */
-void __inet_twsk_kill(struct inet_timewait_sock *tw, struct inet_hashinfo *hashinfo)
+static void __inet_twsk_kill(struct inet_timewait_sock *tw,
+			     struct inet_hashinfo *hashinfo)
 {
 {
 	struct inet_bind_hashbucket *bhead;
 	struct inet_bind_hashbucket *bhead;
 	struct inet_bind_bucket *tb;
 	struct inet_bind_bucket *tb;
@@ -47,8 +48,6 @@ void __inet_twsk_kill(struct inet_timewait_sock *tw, struct inet_hashinfo *hashi
 	inet_twsk_put(tw);
 	inet_twsk_put(tw);
 }
 }
 
 
-EXPORT_SYMBOL_GPL(__inet_twsk_kill);
-
 /*
 /*
  * Enter the time wait state. This is called with locally disabled BH.
  * Enter the time wait state. This is called with locally disabled BH.
  * Essentially we whip up a timewait bucket, copy the relevant info into it
  * Essentially we whip up a timewait bucket, copy the relevant info into it