diff options
author | Adrian Bunk <bunk@kernel.org> | 2007-11-20 01:45:20 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:54:33 -0500 |
commit | 02d45827fa211093202f96bdd58020cc8687929f (patch) | |
tree | 92f985b3040bca65c3247bb89ae667d77b7c26c9 /net | |
parent | beb659bd8c9f2ccc8195779383f71088f936bf6e (diff) |
[NET] net/core/request_sock.c: Remove unused exports.
This patch removes the following unused EXPORT_SYMBOL's:
- reqsk_queue_alloc
- __reqsk_queue_destroy
- reqsk_queue_destroy
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/request_sock.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/net/core/request_sock.c b/net/core/request_sock.c index 45aed75cb571..2d3035d3abd7 100644 --- a/net/core/request_sock.c +++ b/net/core/request_sock.c | |||
@@ -69,8 +69,6 @@ int reqsk_queue_alloc(struct request_sock_queue *queue, | |||
69 | return 0; | 69 | return 0; |
70 | } | 70 | } |
71 | 71 | ||
72 | EXPORT_SYMBOL(reqsk_queue_alloc); | ||
73 | |||
74 | void __reqsk_queue_destroy(struct request_sock_queue *queue) | 72 | void __reqsk_queue_destroy(struct request_sock_queue *queue) |
75 | { | 73 | { |
76 | struct listen_sock *lopt; | 74 | struct listen_sock *lopt; |
@@ -91,8 +89,6 @@ void __reqsk_queue_destroy(struct request_sock_queue *queue) | |||
91 | kfree(lopt); | 89 | kfree(lopt); |
92 | } | 90 | } |
93 | 91 | ||
94 | EXPORT_SYMBOL(__reqsk_queue_destroy); | ||
95 | |||
96 | static inline struct listen_sock *reqsk_queue_yank_listen_sk( | 92 | static inline struct listen_sock *reqsk_queue_yank_listen_sk( |
97 | struct request_sock_queue *queue) | 93 | struct request_sock_queue *queue) |
98 | { | 94 | { |
@@ -134,4 +130,3 @@ void reqsk_queue_destroy(struct request_sock_queue *queue) | |||
134 | kfree(lopt); | 130 | kfree(lopt); |
135 | } | 131 | } |
136 | 132 | ||
137 | EXPORT_SYMBOL(reqsk_queue_destroy); | ||