mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 15:11:31 +00:00
SUNRPC: Check a return result
Minor: Replace an empty if statement with a debugging dprintk. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Cc: Thomas Talpey <Thomas.Talpey@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
d4b37ff735
commit
5d40a8a525
@ -522,7 +522,7 @@ rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
|
|||||||
struct rpcrdma_create_data_internal *cdata)
|
struct rpcrdma_create_data_internal *cdata)
|
||||||
{
|
{
|
||||||
struct ib_device_attr devattr;
|
struct ib_device_attr devattr;
|
||||||
int rc;
|
int rc, err;
|
||||||
|
|
||||||
rc = ib_query_device(ia->ri_id->device, &devattr);
|
rc = ib_query_device(ia->ri_id->device, &devattr);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
@ -648,8 +648,10 @@ rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out2:
|
out2:
|
||||||
if (ib_destroy_cq(ep->rep_cq))
|
err = ib_destroy_cq(ep->rep_cq);
|
||||||
;
|
if (err)
|
||||||
|
dprintk("RPC: %s: ib_destroy_cq returned %i\n",
|
||||||
|
__func__, err);
|
||||||
out1:
|
out1:
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user