aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/core/rw.c
diff options
context:
space:
mode:
authorIsrael Rukshin <israelr@mellanox.com>2019-05-15 13:49:29 +0300
committerJason Gunthorpe <jgg@mellanox.com>2019-05-21 15:01:06 -0300
commitf73e4076426b3494269e46fd5cf9d89ff63a8598 (patch)
tree872baf5d504ab17e2a29f73c6a0ba89a657e6269 /drivers/infiniband/core/rw.c
parentRDMA/rw: Fix doc typo (diff)
downloadlinux-dev-f73e4076426b3494269e46fd5cf9d89ff63a8598.tar.xz
linux-dev-f73e4076426b3494269e46fd5cf9d89ff63a8598.zip
RDMA/rw: Print the correct number of sig MRs
A wrong value was printed in case of sig MR pool initialization failure. Signed-off-by: Israel Rukshin <israelr@mellanox.com> Reviewed-by: Max Gurtovoy <maxg@mellanox.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'drivers/infiniband/core/rw.c')
-rw-r--r--drivers/infiniband/core/rw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/core/rw.c b/drivers/infiniband/core/rw.c
index e763e42dce05..deeaf2b4b273 100644
--- a/drivers/infiniband/core/rw.c
+++ b/drivers/infiniband/core/rw.c
@@ -731,7 +731,7 @@ int rdma_rw_init_mrs(struct ib_qp *qp, struct ib_qp_init_attr *attr)
IB_MR_TYPE_SIGNATURE, 2);
if (ret) {
pr_err("%s: failed to allocated %d SIG MRs\n",
- __func__, nr_mrs);
+ __func__, nr_sig_mrs);
goto out_free_rdma_mrs;
}
}