diff options
-rw-r--r-- | net/sunrpc/xprt.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt.c index 4953550537e0..04199bc8416f 100644 --- a/net/sunrpc/xprt.c +++ b/net/sunrpc/xprt.c | |||
@@ -1104,11 +1104,9 @@ struct rpc_xprt *xprt_alloc(struct net *net, size_t size, | |||
1104 | for (i = 0; i < num_prealloc; i++) { | 1104 | for (i = 0; i < num_prealloc; i++) { |
1105 | req = kzalloc(sizeof(struct rpc_rqst), GFP_KERNEL); | 1105 | req = kzalloc(sizeof(struct rpc_rqst), GFP_KERNEL); |
1106 | if (!req) | 1106 | if (!req) |
1107 | break; | 1107 | goto out_free; |
1108 | list_add(&req->rq_list, &xprt->free); | 1108 | list_add(&req->rq_list, &xprt->free); |
1109 | } | 1109 | } |
1110 | if (i < num_prealloc) | ||
1111 | goto out_free; | ||
1112 | if (max_alloc > num_prealloc) | 1110 | if (max_alloc > num_prealloc) |
1113 | xprt->max_reqs = max_alloc; | 1111 | xprt->max_reqs = max_alloc; |
1114 | else | 1112 | else |