iser-target: Remove impossible condition from isert_wait_conn
authorJenny Derzhavetz <jennyf@mellanox.com>
Wed, 24 Feb 2016 17:24:03 +0000 (19:24 +0200)
committerNicholas Bellinger <nab@linux-iscsi.org>
Fri, 11 Mar 2016 05:48:40 +0000 (21:48 -0800)
We can never get to isert_wait_conn in INIT state anymore, so
get rid of this condition.

Signed-off-by: Jenny Derzhavetz <jennyf@mellanox.com>
Signed-off-by: Sagi Grimberg <sagig@mellanox.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
drivers/infiniband/ulp/isert/ib_isert.c

index 01d3726..21f4f44 100644 (file)
@@ -3362,14 +3362,6 @@ static void isert_wait_conn(struct iscsi_conn *conn)
        isert_info("Starting conn %p\n", isert_conn);
 
        mutex_lock(&isert_conn->mutex);
-       /*
-        * Only wait for wait_comp_err if the isert_conn made it
-        * into full feature phase..
-        */
-       if (isert_conn->state == ISER_CONN_INIT) {
-               mutex_unlock(&isert_conn->mutex);
-               return;
-       }
        isert_conn_terminate(isert_conn);
        mutex_unlock(&isert_conn->mutex);