diff options
-rw-r--r-- | include/linux/sunrpc/xprt.h | 22 | ||||
-rw-r--r-- | include/linux/sunrpc/xprtsock.h | 40 | ||||
-rw-r--r-- | net/sunrpc/sunrpc_syms.c | 2 | ||||
-rw-r--r-- | net/sunrpc/xprtsock.c | 1 |
4 files changed, 42 insertions, 23 deletions
diff --git a/include/linux/sunrpc/xprt.h b/include/linux/sunrpc/xprt.h index 6992ff02d737..d7b8fcd312cc 100644 --- a/include/linux/sunrpc/xprt.h +++ b/include/linux/sunrpc/xprt.h | |||
@@ -19,25 +19,11 @@ | |||
19 | 19 | ||
20 | #ifdef __KERNEL__ | 20 | #ifdef __KERNEL__ |
21 | 21 | ||
22 | extern unsigned int xprt_udp_slot_table_entries; | ||
23 | extern unsigned int xprt_tcp_slot_table_entries; | ||
24 | |||
25 | #define RPC_MIN_SLOT_TABLE (2U) | 22 | #define RPC_MIN_SLOT_TABLE (2U) |
26 | #define RPC_DEF_SLOT_TABLE (16U) | 23 | #define RPC_DEF_SLOT_TABLE (16U) |
27 | #define RPC_MAX_SLOT_TABLE (128U) | 24 | #define RPC_MAX_SLOT_TABLE (128U) |
28 | 25 | ||
29 | /* | 26 | /* |
30 | * Parameters for choosing a free port | ||
31 | */ | ||
32 | extern unsigned int xprt_min_resvport; | ||
33 | extern unsigned int xprt_max_resvport; | ||
34 | |||
35 | #define RPC_MIN_RESVPORT (1U) | ||
36 | #define RPC_MAX_RESVPORT (65535U) | ||
37 | #define RPC_DEF_MIN_RESVPORT (665U) | ||
38 | #define RPC_DEF_MAX_RESVPORT (1023U) | ||
39 | |||
40 | /* | ||
41 | * This describes a timeout strategy | 27 | * This describes a timeout strategy |
42 | */ | 28 | */ |
43 | struct rpc_timeout { | 29 | struct rpc_timeout { |
@@ -263,14 +249,6 @@ void xprt_release_rqst_cong(struct rpc_task *task); | |||
263 | void xprt_disconnect(struct rpc_xprt *xprt); | 249 | void xprt_disconnect(struct rpc_xprt *xprt); |
264 | 250 | ||
265 | /* | 251 | /* |
266 | * Socket transport setup operations | ||
267 | */ | ||
268 | struct rpc_xprt *xs_setup_udp(struct xprt_create *args); | ||
269 | struct rpc_xprt *xs_setup_tcp(struct xprt_create *args); | ||
270 | int init_socket_xprt(void); | ||
271 | void cleanup_socket_xprt(void); | ||
272 | |||
273 | /* | ||
274 | * Reserved bit positions in xprt->state | 252 | * Reserved bit positions in xprt->state |
275 | */ | 253 | */ |
276 | #define XPRT_LOCKED (0) | 254 | #define XPRT_LOCKED (0) |
diff --git a/include/linux/sunrpc/xprtsock.h b/include/linux/sunrpc/xprtsock.h new file mode 100644 index 000000000000..9bde77061e4f --- /dev/null +++ b/include/linux/sunrpc/xprtsock.h | |||
@@ -0,0 +1,40 @@ | |||
1 | /* | ||
2 | * linux/include/linux/sunrpc/xprtsock.h | ||
3 | * | ||
4 | * Declarations for the RPC transport socket provider. | ||
5 | */ | ||
6 | |||
7 | #ifndef _LINUX_SUNRPC_XPRTSOCK_H | ||
8 | #define _LINUX_SUNRPC_XPRTSOCK_H | ||
9 | |||
10 | #ifdef __KERNEL__ | ||
11 | |||
12 | /* | ||
13 | * Socket transport setup operations | ||
14 | */ | ||
15 | struct rpc_xprt *xs_setup_udp(struct xprt_create *args); | ||
16 | struct rpc_xprt *xs_setup_tcp(struct xprt_create *args); | ||
17 | |||
18 | int init_socket_xprt(void); | ||
19 | void cleanup_socket_xprt(void); | ||
20 | |||
21 | /* | ||
22 | * RPC slot table sizes for UDP, TCP transports | ||
23 | */ | ||
24 | extern unsigned int xprt_udp_slot_table_entries; | ||
25 | extern unsigned int xprt_tcp_slot_table_entries; | ||
26 | |||
27 | /* | ||
28 | * Parameters for choosing a free port | ||
29 | */ | ||
30 | extern unsigned int xprt_min_resvport; | ||
31 | extern unsigned int xprt_max_resvport; | ||
32 | |||
33 | #define RPC_MIN_RESVPORT (1U) | ||
34 | #define RPC_MAX_RESVPORT (65535U) | ||
35 | #define RPC_DEF_MIN_RESVPORT (665U) | ||
36 | #define RPC_DEF_MAX_RESVPORT (1023U) | ||
37 | |||
38 | #endif /* __KERNEL__ */ | ||
39 | |||
40 | #endif /* _LINUX_SUNRPC_XPRTSOCK_H */ | ||
diff --git a/net/sunrpc/sunrpc_syms.c b/net/sunrpc/sunrpc_syms.c index 384c4ad5ab86..33d89e842c85 100644 --- a/net/sunrpc/sunrpc_syms.c +++ b/net/sunrpc/sunrpc_syms.c | |||
@@ -20,7 +20,7 @@ | |||
20 | #include <linux/sunrpc/auth.h> | 20 | #include <linux/sunrpc/auth.h> |
21 | #include <linux/workqueue.h> | 21 | #include <linux/workqueue.h> |
22 | #include <linux/sunrpc/rpc_pipe_fs.h> | 22 | #include <linux/sunrpc/rpc_pipe_fs.h> |
23 | 23 | #include <linux/sunrpc/xprtsock.h> | |
24 | 24 | ||
25 | /* RPC scheduler */ | 25 | /* RPC scheduler */ |
26 | EXPORT_SYMBOL(rpc_execute); | 26 | EXPORT_SYMBOL(rpc_execute); |
diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c index 4f1a57b28a49..192a06e3b8c5 100644 --- a/net/sunrpc/xprtsock.c +++ b/net/sunrpc/xprtsock.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <linux/tcp.h> | 32 | #include <linux/tcp.h> |
33 | #include <linux/sunrpc/clnt.h> | 33 | #include <linux/sunrpc/clnt.h> |
34 | #include <linux/sunrpc/sched.h> | 34 | #include <linux/sunrpc/sched.h> |
35 | #include <linux/sunrpc/xprtsock.h> | ||
35 | #include <linux/file.h> | 36 | #include <linux/file.h> |
36 | 37 | ||
37 | #include <net/sock.h> | 38 | #include <net/sock.h> |