aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/target/loopback
diff options
context:
space:
mode:
authorHannes Reinecke <hare@suse.de>2015-06-18 11:43:38 +0200
committerNicholas Bellinger <nab@linux-iscsi.org>2015-07-23 22:08:22 -0700
commite986a35aba67558381d5cec59a14c4d0b20f0d47 (patch)
tree58535b746aea2c97f16b10981bfcf674f2df5f27 /drivers/target/loopback
parenttcm_loop: Remove SAS vestigies (diff)
downloadlinux-dev-e986a35aba67558381d5cec59a14c4d0b20f0d47.tar.xz
linux-dev-e986a35aba67558381d5cec59a14c4d0b20f0d47.zip
tcm_loop: Send I_T_NEXUS_LOSS_OCCURRED UA
If the virtual SAS link is set to 'offline' we should be queueing an I_T_NEXUS_LOSS_OCCURRED UA. Signed-off-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/loopback')
-rw-r--r--drivers/target/loopback/tcm_loop.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/target/loopback/tcm_loop.c b/drivers/target/loopback/tcm_loop.c
index b179d934cee1..5bc85ffed720 100644
--- a/drivers/target/loopback/tcm_loop.c
+++ b/drivers/target/loopback/tcm_loop.c
@@ -1034,6 +1034,11 @@ static ssize_t tcm_loop_tpg_store_transport_status(
}
if (!strncmp(page, "offline", 7)) {
tl_tpg->tl_transport_status = TCM_TRANSPORT_OFFLINE;
+ if (tl_tpg->tl_nexus) {
+ struct se_session *tl_sess = tl_tpg->tl_nexus->se_sess;
+
+ core_allocate_nexus_loss_ua(tl_sess->se_node_acl);
+ }
return count;
}
return -EINVAL;