diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2006-10-17 14:44:27 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-12-06 10:46:34 -0500 |
commit | c8541ecdd5692bcfbcb5305cab9a873288d29175 (patch) | |
tree | 45714725337f22a5eb27cbe5b87c3b01f37c9490 /include/linux/sunrpc | |
parent | e744cf2e3ab8535a8494a4cf0177de26f94586da (diff) |
SUNRPC: Make the transport-specific setup routine allocate rpc_xprt
Change the location where the rpc_xprt structure is allocated so each
transport implementation can allocate a private area from the same
chunk of memory.
Note also that xprt->ops->destroy, rather than xprt_destroy, is now
responsible for freeing rpc_xprt when the transport is destroyed.
Test plan:
Connectathon.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/sunrpc')
-rw-r--r-- | include/linux/sunrpc/xprt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sunrpc/xprt.h b/include/linux/sunrpc/xprt.h index 0321fb53bd02..d7919010863d 100644 --- a/include/linux/sunrpc/xprt.h +++ b/include/linux/sunrpc/xprt.h | |||
@@ -265,8 +265,8 @@ void xprt_disconnect(struct rpc_xprt *xprt); | |||
265 | /* | 265 | /* |
266 | * Socket transport setup operations | 266 | * Socket transport setup operations |
267 | */ | 267 | */ |
268 | int xs_setup_udp(struct rpc_xprt *xprt, struct rpc_timeout *to); | 268 | struct rpc_xprt * xs_setup_udp(struct sockaddr *addr, size_t addrlen, struct rpc_timeout *to); |
269 | int xs_setup_tcp(struct rpc_xprt *xprt, struct rpc_timeout *to); | 269 | struct rpc_xprt * xs_setup_tcp(struct sockaddr *addr, size_t addrlen, struct rpc_timeout *to); |
270 | 270 | ||
271 | /* | 271 | /* |
272 | * Reserved bit positions in xprt->state | 272 | * Reserved bit positions in xprt->state |