linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] RDMA/isert: Fix a recently introduced regression related to logout
@ 2020-01-16  4:47 Bart Van Assche
  2020-01-17 16:42 ` Marciniszyn, Mike
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bart Van Assche @ 2020-01-16  4:47 UTC (permalink / raw)
  To: Martin K . Petersen
  Cc: target-devel, linux-rdma, Bart Van Assche, Rahul Kundu

iscsit_close_connection() calls isert_wait_conn(). Due to commit
e9d3009cb936 both functions call target_wait_for_sess_cmds() although
that last function should be called only once. Fix this by removing
the target_wait_for_sess_cmds() call from isert_wait_conn() and by
only calling isert_wait_conn() after target_wait_for_sess_cmds().

Reported-by: Rahul Kundu <rahul.kundu@chelsio.com>
Fixes: e9d3009cb936 ("scsi: target: iscsi: Wait for all commands to finish before freeing a session").
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
---
 drivers/infiniband/ulp/isert/ib_isert.c | 12 ------------
 drivers/target/iscsi/iscsi_target.c     |  6 +++---
 2 files changed, 3 insertions(+), 15 deletions(-)

diff --git a/drivers/infiniband/ulp/isert/ib_isert.c b/drivers/infiniband/ulp/isert/ib_isert.c
index a1a035270cab..b273e421e910 100644
--- a/drivers/infiniband/ulp/isert/ib_isert.c
+++ b/drivers/infiniband/ulp/isert/ib_isert.c
@@ -2575,17 +2575,6 @@ isert_wait4logout(struct isert_conn *isert_conn)
 	}
 }
 
-static void
-isert_wait4cmds(struct iscsi_conn *conn)
-{
-	isert_info("iscsi_conn %p\n", conn);
-
-	if (conn->sess) {
-		target_sess_cmd_list_set_waiting(conn->sess->se_sess);
-		target_wait_for_sess_cmds(conn->sess->se_sess);
-	}
-}
-
 /**
  * isert_put_unsol_pending_cmds() - Drop commands waiting for
  *     unsolicitate dataout
@@ -2633,7 +2622,6 @@ static void isert_wait_conn(struct iscsi_conn *conn)
 
 	ib_drain_qp(isert_conn->qp);
 	isert_put_unsol_pending_cmds(conn);
-	isert_wait4cmds(conn);
 	isert_wait4logout(isert_conn);
 
 	queue_work(isert_release_wq, &isert_conn->release_work);
diff --git a/drivers/target/iscsi/iscsi_target.c b/drivers/target/iscsi/iscsi_target.c
index 7251a87bb576..b94ed4e30770 100644
--- a/drivers/target/iscsi/iscsi_target.c
+++ b/drivers/target/iscsi/iscsi_target.c
@@ -4149,9 +4149,6 @@ int iscsit_close_connection(
 	iscsit_stop_nopin_response_timer(conn);
 	iscsit_stop_nopin_timer(conn);
 
-	if (conn->conn_transport->iscsit_wait_conn)
-		conn->conn_transport->iscsit_wait_conn(conn);
-
 	/*
 	 * During Connection recovery drop unacknowledged out of order
 	 * commands for this connection, and prepare the other commands
@@ -4237,6 +4234,9 @@ int iscsit_close_connection(
 	target_sess_cmd_list_set_waiting(sess->se_sess);
 	target_wait_for_sess_cmds(sess->se_sess);
 
+	if (conn->conn_transport->iscsit_wait_conn)
+		conn->conn_transport->iscsit_wait_conn(conn);
+
 	ahash_request_free(conn->conn_tx_hash);
 	if (conn->conn_rx_hash) {
 		struct crypto_ahash *tfm;

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

* RE: [PATCH] RDMA/isert: Fix a recently introduced regression related to logout
  2020-01-16  4:47 [PATCH] RDMA/isert: Fix a recently introduced regression related to logout Bart Van Assche
@ 2020-01-17 16:42 ` Marciniszyn, Mike
  2020-01-20  7:30 ` Sagi Grimberg
  2020-01-21  5:30 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Marciniszyn, Mike @ 2020-01-17 16:42 UTC (permalink / raw)
  To: Bart Van Assche, Martin K . Petersen
  Cc: target-devel, linux-rdma, Rahul Kundu

> Subject: [PATCH] RDMA/isert: Fix a recently introduced regression related to
> logout
> 
> iscsit_close_connection() calls isert_wait_conn(). Due to commit
> e9d3009cb936 both functions call target_wait_for_sess_cmds() although
> that last function should be called only once. Fix this by removing
> the target_wait_for_sess_cmds() call from isert_wait_conn() and by
> only calling isert_wait_conn() after target_wait_for_sess_cmds().
> 
> Reported-by: Rahul Kundu <rahul.kundu@chelsio.com>
> Fixes: e9d3009cb936 ("scsi: target: iscsi: Wait for all commands to finish
> before freeing a session").
> Signed-off-by: Bart Van Assche <bvanassche@acm.org>

Tested-by: Mike Marciniszyn <mike.marciniszyn@intel.com>

Mike

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

* Re: [PATCH] RDMA/isert: Fix a recently introduced regression related to logout
  2020-01-16  4:47 [PATCH] RDMA/isert: Fix a recently introduced regression related to logout Bart Van Assche
  2020-01-17 16:42 ` Marciniszyn, Mike
@ 2020-01-20  7:30 ` Sagi Grimberg
  2020-01-21  5:30 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Sagi Grimberg @ 2020-01-20  7:30 UTC (permalink / raw)
  To: Bart Van Assche, Martin K . Petersen
  Cc: target-devel, linux-rdma, Rahul Kundu

Bart,

Acked-by: Sagi Grimberg <sagi@grimberg.me>

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

* Re: [PATCH] RDMA/isert: Fix a recently introduced regression related to logout
  2020-01-16  4:47 [PATCH] RDMA/isert: Fix a recently introduced regression related to logout Bart Van Assche
  2020-01-17 16:42 ` Marciniszyn, Mike
  2020-01-20  7:30 ` Sagi Grimberg
@ 2020-01-21  5:30 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2020-01-21  5:30 UTC (permalink / raw)
  To: Bart Van Assche
  Cc: Martin K . Petersen, target-devel, linux-rdma, Rahul Kundu


Bart,

> iscsit_close_connection() calls isert_wait_conn(). Due to commit
> e9d3009cb936 both functions call target_wait_for_sess_cmds() although
> that last function should be called only once. Fix this by removing
> the target_wait_for_sess_cmds() call from isert_wait_conn() and by
> only calling isert_wait_conn() after target_wait_for_sess_cmds().

Applied to 5.5/scsi-fixes, thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

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

end of thread, other threads:[~2020-01-21  5:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-16  4:47 [PATCH] RDMA/isert: Fix a recently introduced regression related to logout Bart Van Assche
2020-01-17 16:42 ` Marciniszyn, Mike
2020-01-20  7:30 ` Sagi Grimberg
2020-01-21  5:30 ` Martin K. Petersen

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).