diff options
author | Pavel Emelyanov <xemul@parallels.com> | 2010-09-29 08:02:43 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2010-10-01 17:18:52 -0400 |
commit | bd1722d4316e42a12fe6337ebe34d7e1e2c088b2 (patch) | |
tree | 358d45aaf5fb08a177fd6fbe5dcf8872160c30fc /net/sunrpc/xprtrdma | |
parent | 2b44f1ba40914777f4b1075254ba97663d4e2574 (diff) |
sunrpc: Factor out rpc_xprt allocation
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc/xprtrdma')
-rw-r--r-- | net/sunrpc/xprtrdma/transport.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/net/sunrpc/xprtrdma/transport.c b/net/sunrpc/xprtrdma/transport.c index a85e866a77f7..9d77bf25829f 100644 --- a/net/sunrpc/xprtrdma/transport.c +++ b/net/sunrpc/xprtrdma/transport.c | |||
@@ -285,23 +285,14 @@ xprt_setup_rdma(struct xprt_create *args) | |||
285 | return ERR_PTR(-EBADF); | 285 | return ERR_PTR(-EBADF); |
286 | } | 286 | } |
287 | 287 | ||
288 | xprt = kzalloc(sizeof(struct rpcrdma_xprt), GFP_KERNEL); | 288 | xprt = xprt_alloc(sizeof(struct rpcrdma_xprt), |
289 | xprt_rdma_slot_table_entries); | ||
289 | if (xprt == NULL) { | 290 | if (xprt == NULL) { |
290 | dprintk("RPC: %s: couldn't allocate rpcrdma_xprt\n", | 291 | dprintk("RPC: %s: couldn't allocate rpcrdma_xprt\n", |
291 | __func__); | 292 | __func__); |
292 | return ERR_PTR(-ENOMEM); | 293 | return ERR_PTR(-ENOMEM); |
293 | } | 294 | } |
294 | 295 | ||
295 | xprt->max_reqs = xprt_rdma_slot_table_entries; | ||
296 | xprt->slot = kcalloc(xprt->max_reqs, | ||
297 | sizeof(struct rpc_rqst), GFP_KERNEL); | ||
298 | if (xprt->slot == NULL) { | ||
299 | dprintk("RPC: %s: couldn't allocate %d slots\n", | ||
300 | __func__, xprt->max_reqs); | ||
301 | kfree(xprt); | ||
302 | return ERR_PTR(-ENOMEM); | ||
303 | } | ||
304 | |||
305 | /* 60 second timeout, no retries */ | 296 | /* 60 second timeout, no retries */ |
306 | xprt->timeout = &xprt_rdma_default_timeout; | 297 | xprt->timeout = &xprt_rdma_default_timeout; |
307 | xprt->bind_timeout = (60U * HZ); | 298 | xprt->bind_timeout = (60U * HZ); |