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/xprtsock.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/xprtsock.h')
-rw-r--r-- | include/linux/sunrpc/xprtsock.h | 40 |
1 files changed, 40 insertions, 0 deletions
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 */ | ||