mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 05:08:30 +07:00
23 lines
459 B
C
23 lines
459 B
C
|
/*
|
||
|
* 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__
|
||
|
|
||
|
int init_socket_xprt(void);
|
||
|
void cleanup_socket_xprt(void);
|
||
|
|
||
|
#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 */
|