-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 69230 b: refs/heads/master c: 49c36fc h: refs/heads/master v: v3
- Loading branch information
\"Talpey, Thomas\
authored and
Trond Myklebust
committed
Oct 9, 2007
1 parent
d0746c8
commit 24205d2
Showing
5 changed files
with
43 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 3c341b0b925eee01daae2c594b81e673f659d7cd | ||
refs/heads/master: 49c36fcc441baf6a4d698e3645d1adf28edaf57b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* linux/include/linux/sunrpc/xprtsock.h | ||
* | ||
* Declarations for the RPC transport socket provider. | ||
*/ | ||
|
||
#ifndef _LINUX_SUNRPC_XPRTSOCK_H | ||
#define _LINUX_SUNRPC_XPRTSOCK_H | ||
|
||
#ifdef __KERNEL__ | ||
|
||
/* | ||
* Socket transport setup operations | ||
*/ | ||
struct rpc_xprt *xs_setup_udp(struct xprt_create *args); | ||
struct rpc_xprt *xs_setup_tcp(struct xprt_create *args); | ||
|
||
int init_socket_xprt(void); | ||
void cleanup_socket_xprt(void); | ||
|
||
/* | ||
* RPC slot table sizes for UDP, TCP transports | ||
*/ | ||
extern unsigned int xprt_udp_slot_table_entries; | ||
extern unsigned int xprt_tcp_slot_table_entries; | ||
|
||
/* | ||
* Parameters for choosing a free port | ||
*/ | ||
extern unsigned int xprt_min_resvport; | ||
extern unsigned int xprt_max_resvport; | ||
|
||
#define RPC_MIN_RESVPORT (1U) | ||
#define RPC_MAX_RESVPORT (65535U) | ||
#define RPC_DEF_MIN_RESVPORT (665U) | ||
#define RPC_DEF_MAX_RESVPORT (1023U) | ||
|
||
#endif /* __KERNEL__ */ | ||
|
||
#endif /* _LINUX_SUNRPC_XPRTSOCK_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters