diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2016-11-29 11:04:26 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2016-11-30 17:31:11 -0500 |
commit | 1b9f700b8cfc31089e2dfa5d0905c52fd4529b50 (patch) | |
tree | cd0a36ecac5dba765de7419590eadf7d48422f20 | |
parent | 7ba630f54ca6404351cebea03fbd3c95760b9b02 (diff) | |
download | linux-1b9f700b8cfc31089e2dfa5d0905c52fd4529b50.tar.gz linux-1b9f700b8cfc31089e2dfa5d0905c52fd4529b50.tar.bz2 linux-1b9f700b8cfc31089e2dfa5d0905c52fd4529b50.zip |
svcrdma: Clear xpt_bc_xps in xprt_setup_rdma_bc() error exit arm
Logic copied from xs_setup_bc_tcp().
Fixes: 39a9beab5acb ('rpc: share one xps between all backchannels')
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-rw-r--r-- | net/sunrpc/xprtrdma/svc_rdma_backchannel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sunrpc/xprtrdma/svc_rdma_backchannel.c b/net/sunrpc/xprtrdma/svc_rdma_backchannel.c index 20027f8de129..6035c5a380a6 100644 --- a/net/sunrpc/xprtrdma/svc_rdma_backchannel.c +++ b/net/sunrpc/xprtrdma/svc_rdma_backchannel.c @@ -359,6 +359,7 @@ xprt_setup_rdma_bc(struct xprt_create *args) out_fail: xprt_rdma_free_addresses(xprt); args->bc_xprt->xpt_bc_xprt = NULL; + args->bc_xprt->xpt_bc_xps = NULL; xprt_put(xprt); xprt_free(xprt); return ERR_PTR(-EINVAL); |