]> git.baikalelectronics.ru Git - kernel.git/commit
iser-target: Fix multi network portal shutdown regression
authorNicholas Bellinger <nab@linux-iscsi.org>
Wed, 4 Jun 2014 01:27:52 +0000 (18:27 -0700)
committerNicholas Bellinger <nab@linux-iscsi.org>
Wed, 4 Jun 2014 02:17:32 +0000 (19:17 -0700)
commit23899a8a8f6d85325914793d3670cd150ed4003f
tree27fcd067f054f513daf98144f9ee554409de22f6
parenteef0f74e47a07f0d45e96bab07a4802a03e1420b
iser-target: Fix multi network portal shutdown regression

This patch fixes a iser-target specific regression introduced in
v3.15-rc6 with:

commit e772e54bc40339d5ac1a142f9f24ba5ece0c2bc2
Author: Sagi Grimberg <sagig@mellanox.com>
Date:   Tue Apr 29 13:13:47 2014 +0300

    Target/iscsi,iser: Avoid accepting transport connections during stop stage

where the change to set iscsi_np->enabled = false within
iscsit_clear_tpg_np_login_thread() meant that a iscsi_np with
two iscsi_tpg_np exports would have it's parent iscsi_np set
to a disabled state, even if other iscsi_tpg_np exports still
existed.

This patch changes iscsit_clear_tpg_np_login_thread() to only
set iscsi_np->enabled = false when shutdown = true, and also
changes iscsit_del_np() to set iscsi_np->enabled = true when
iscsi_np->np_exports is non zero.

Cc: Sagi Grimberg <sagig@dev.mellanox.co.il>
Cc: stable@vger.kernel.org # 3.10+
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
drivers/target/iscsi/iscsi_target.c
drivers/target/iscsi/iscsi_target_tpg.c