summaryrefslogtreecommitdiffstats
path: root/sys/cam
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2015-09-11 14:47:35 +0000
committermav <mav@FreeBSD.org>2015-09-11 14:47:35 +0000
commitf992fbc2eda88c8a88d6289a122707b15279b892 (patch)
tree8a3fdc0fdcf856111fcb6d0e5f35f7894be40d1c /sys/cam
parent2d639a52d6002a4b06e79b59a66d68aa3554f926 (diff)
downloadFreeBSD-src-f992fbc2eda88c8a88d6289a122707b15279b892.zip
FreeBSD-src-f992fbc2eda88c8a88d6289a122707b15279b892.tar.gz
Make ctld restart on primary HA node less invasive for secondary.
Diffstat (limited to 'sys/cam')
-rw-r--r--sys/cam/ctl/ctl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/cam/ctl/ctl.c b/sys/cam/ctl/ctl.c
index 16392e3..ddac04f 100644
--- a/sys/cam/ctl/ctl.c
+++ b/sys/cam/ctl/ctl.c
@@ -1746,12 +1746,12 @@ ctl_serialize_other_sc_cmd(struct ctl_scsiio *ctsio)
lun = NULL;
if (lun == NULL) {
/*
- * Why isn't LUN defined? The other side wouldn't
- * send a cmd if the LUN is undefined.
+ * The other node would not send this request to us unless
+ * received announce that we are primary node for this LUN.
+ * If this LUN does not exist now, it is probably result of
+ * a race, so respond to initiator in the most opaque way.
*/
- printf("%s: Bad JUJU!, LUN is NULL!\n", __func__);
-
- ctl_set_unsupported_lun(ctsio);
+ ctl_set_busy(ctsio);
ctl_copy_sense_data_back((union ctl_io *)ctsio, &msg_info);
msg_info.hdr.original_sc = ctsio->io_hdr.original_sc;
msg_info.hdr.serializing_sc = NULL;
OpenPOWER on IntegriCloud