diff options
author | \"Talpey, Thomas\ <Thomas.Talpey@netapp.com> | 2007-09-10 13:47:31 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-10-09 17:17:48 -0400 |
commit | 49c36fcc441baf6a4d698e3645d1adf28edaf57b (patch) | |
tree | b5e51e610e67ffd8fbdffd7d2e7d49a91ad4a1fc /include/linux/sunrpc/xprt.h | |
parent | 3c341b0b925eee01daae2c594b81e673f659d7cd (diff) |
SUNRPC: rearrange RPC sockets definitions
To prepare for including non-sockets-based RPC transports, move the
sockets-dependent definitions into their own file.
Signed-off-by: Tom Talpey <tmt@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/sunrpc/xprt.h')
-rw-r--r-- | include/linux/sunrpc/xprt.h | 22 |
1 files changed, 0 insertions, 22 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) |