summaryrefslogtreecommitdiffstats
path: root/sys/dev/hyperv
diff options
context:
space:
mode:
authorgjb <gjb@FreeBSD.org>2014-10-21 21:27:13 +0000
committergjb <gjb@FreeBSD.org>2014-10-21 21:27:13 +0000
commit9ec3090c92a8a947fab44910b3ca7eac4b0e1d97 (patch)
tree5c947e4f1fca51420aa62b62f592c09a473d60cd /sys/dev/hyperv
parent86df2c268fe2029d1252ce4749276b08f63686d3 (diff)
downloadFreeBSD-src-9ec3090c92a8a947fab44910b3ca7eac4b0e1d97.zip
FreeBSD-src-9ec3090c92a8a947fab44910b3ca7eac4b0e1d97.tar.gz
MFC r273402:
Fix an issue where a FreeBSD virtual machine provisioned in the Microsoft Azure service does not recognize the second attached disk on the system. PR: 194376 Insta-MFC OK: re (rodrigc) Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sys/dev/hyperv')
-rw-r--r--sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c b/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c
index e847678..2a8043d 100644
--- a/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c
+++ b/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c
@@ -75,7 +75,7 @@ __FBSDID("$FreeBSD$");
#define STORVSC_MAX_IO_REQUESTS (STORVSC_MAX_LUNS_PER_TARGET * 2)
#define BLKVSC_MAX_IDE_DISKS_PER_TARGET (1)
#define BLKVSC_MAX_IO_REQUESTS STORVSC_MAX_IO_REQUESTS
-#define STORVSC_MAX_TARGETS (1)
+#define STORVSC_MAX_TARGETS (2)
struct storvsc_softc;
@@ -584,7 +584,6 @@ hv_storvsc_on_iocompletion(struct storvsc_softc *sc,
vm_srb = &vstor_packet->u.vm_srb;
- request->sense_info_len = 0;
if (((vm_srb->scsi_status & 0xFF) == SCSI_STATUS_CHECK_COND) &&
(vm_srb->srb_status & SRB_STATUS_AUTOSENSE_VALID)) {
/* Autosense data available */
OpenPOWER on IntegriCloud