Commit 02d45827 authored by Adrian Bunk's avatar Adrian Bunk Committed by David S. Miller

[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: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent beb659bd
...@@ -69,8 +69,6 @@ int reqsk_queue_alloc(struct request_sock_queue *queue, ...@@ -69,8 +69,6 @@ int reqsk_queue_alloc(struct request_sock_queue *queue,
return 0; return 0;
} }
EXPORT_SYMBOL(reqsk_queue_alloc);
void __reqsk_queue_destroy(struct request_sock_queue *queue) void __reqsk_queue_destroy(struct request_sock_queue *queue)
{ {
struct listen_sock *lopt; struct listen_sock *lopt;
...@@ -91,8 +89,6 @@ void __reqsk_queue_destroy(struct request_sock_queue *queue) ...@@ -91,8 +89,6 @@ void __reqsk_queue_destroy(struct request_sock_queue *queue)
kfree(lopt); kfree(lopt);
} }
EXPORT_SYMBOL(__reqsk_queue_destroy);
static inline struct listen_sock *reqsk_queue_yank_listen_sk( static inline struct listen_sock *reqsk_queue_yank_listen_sk(
struct request_sock_queue *queue) struct request_sock_queue *queue)
{ {
...@@ -134,4 +130,3 @@ void reqsk_queue_destroy(struct request_sock_queue *queue) ...@@ -134,4 +130,3 @@ void reqsk_queue_destroy(struct request_sock_queue *queue)
kfree(lopt); kfree(lopt);
} }
EXPORT_SYMBOL(reqsk_queue_destroy);
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