iscsi-target: clear tx_thread_active
authorVarun Prakash <varun@chelsio.com>
Tue, 19 Apr 2016 18:30:17 +0000 (00:00 +0530)
committerNicholas Bellinger <nab@linux-iscsi.org>
Tue, 10 May 2016 06:12:19 +0000 (23:12 -0700)
clear tx_thread_active for ISCSI_HW_OFFLOAD
transport in logout_post_handler functions.

Signed-off-by: Varun Prakash <varun@chelsio.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
drivers/target/iscsi/iscsi_target.c

index 348337c..29df956 100644 (file)
@@ -4379,7 +4379,8 @@ static void iscsit_logout_post_handler_closesession(
         * always sleep waiting for RX/TX thread shutdown to complete
         * within iscsit_close_connection().
         */
-       if (conn->conn_transport->transport_type == ISCSI_TCP)
+       if ((conn->conn_transport->transport_type == ISCSI_TCP) ||
+           (conn->conn_transport->transport_type == ISCSI_HW_OFFLOAD))
                sleep = cmpxchg(&conn->tx_thread_active, true, false);
 
        atomic_set(&conn->conn_logout_remove, 0);
@@ -4396,7 +4397,8 @@ static void iscsit_logout_post_handler_samecid(
 {
        int sleep = 1;
 
-       if (conn->conn_transport->transport_type == ISCSI_TCP)
+       if ((conn->conn_transport->transport_type == ISCSI_TCP) ||
+           (conn->conn_transport->transport_type == ISCSI_HW_OFFLOAD))
                sleep = cmpxchg(&conn->tx_thread_active, true, false);
 
        atomic_set(&conn->conn_logout_remove, 0);