stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] IB/srp: Fix possible send queue overflow
@ 2015-10-15  9:26 Sagi Grimberg
  2015-10-15 15:35 ` Bart Van Assche
  2015-11-03 18:56 ` Sagi Grimberg
  0 siblings, 2 replies; 7+ messages in thread
From: Sagi Grimberg @ 2015-10-15  9:26 UTC (permalink / raw)
  To: linux-rdma; +Cc: Stable

When using work request based memory registration (fast_reg)
we must reserve SQ entries for registration and invalidation
in addition to send operations. Each IO consumes 3 SQ entries
(registration, send, invalidation) so we need to allocate 3x
larger send-queue instead of 2x.

Signed-off-by: Sagi Grimberg <sagig@mellanox.com>
CC: Stable <stable@vger.kernel.org>
---
 drivers/infiniband/ulp/srp/ib_srp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c
index d00f819..43b07f7 100644
--- a/drivers/infiniband/ulp/srp/ib_srp.c
+++ b/drivers/infiniband/ulp/srp/ib_srp.c
@@ -488,7 +488,7 @@ static int srp_create_ch_ib(struct srp_rdma_ch *ch)
 	struct ib_qp *qp;
 	struct ib_fmr_pool *fmr_pool = NULL;
 	struct srp_fr_pool *fr_pool = NULL;
-	const int m = 1 + dev->use_fast_reg;
+	const int m = dev->use_fast_reg ? 3 : 1;
 	struct ib_cq_init_attr cq_attr = {};
 	int ret;
 
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-11-24  1:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-15  9:26 [PATCH] IB/srp: Fix possible send queue overflow Sagi Grimberg
2015-10-15 15:35 ` Bart Van Assche
2015-11-03 18:56 ` Sagi Grimberg
2015-11-05 10:23   ` Sagi Grimberg
2015-11-10 10:35     ` Sagi Grimberg
2015-11-22 13:37       ` Christoph Hellwig
2015-11-24  1:11         ` Bart Van Assche

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).