]> git.hungrycats.org Git - linux/commitdiff
Target/iser: Bail from accept_np if np_thread is trying to close
authorSagi Grimberg <sagig@mellanox.com>
Mon, 19 May 2014 14:44:22 +0000 (17:44 +0300)
committerJiri Slaby <jslaby@suse.cz>
Wed, 2 Jul 2014 10:06:28 +0000 (12:06 +0200)
commit e346ab343f4f58c12a96725c7b13df9cc2ad56f6 upstream.

In case np_thread state is in RESET/SHUTDOWN/EXIT states,
no point for isert to stall there as we may get a hang in
case no one will wake it up later.

Signed-off-by: Sagi Grimberg <sagig@mellanox.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/infiniband/ulp/isert/ib_isert.c

index 8645d19f771002655c47101d7b3af01e507ccace..c09d2f0cae49ab55b1be2abae6066617f72de46f 100644 (file)
@@ -2633,9 +2633,14 @@ accept_wait:
                return -ENODEV;
 
        spin_lock_bh(&np->np_thread_lock);
-       if (np->np_thread_state == ISCSI_NP_THREAD_RESET) {
+       if (np->np_thread_state >= ISCSI_NP_THREAD_RESET) {
                spin_unlock_bh(&np->np_thread_lock);
-               pr_debug("ISCSI_NP_THREAD_RESET for isert_accept_np\n");
+               pr_debug("np_thread_state %d for isert_accept_np\n",
+                        np->np_thread_state);
+               /**
+                * No point in stalling here when np_thread
+                * is in state RESET/SHUTDOWN/EXIT - bail
+                **/
                return -ENODEV;
        }
        spin_unlock_bh(&np->np_thread_lock);