svn commit: r272631 - stable/10/sys/cam/ctl
Alexander Motin
mav at FreeBSD.org
Mon Oct 6 13:20:19 UTC 2014
Author: mav
Date: Mon Oct 6 13:20:18 2014
New Revision: 272631
URL: https://svnweb.freebsd.org/changeset/base/272631
Log:
MFC r271606:
Always report that we support REPORT TARGET PORT GROUPS command.
Without clustering support we any way have only one group of permanently
active ports, but that gives us one more supported VMWare feature. ;)
Solaris' Comstar also reports it even when only one port is present.
Modified:
stable/10/sys/cam/ctl/ctl.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/cam/ctl/ctl.c
==============================================================================
--- stable/10/sys/cam/ctl/ctl.c Mon Oct 6 13:19:20 2014 (r272630)
+++ stable/10/sys/cam/ctl/ctl.c Mon Oct 6 13:20:18 2014 (r272631)
@@ -10597,9 +10597,7 @@ ctl_inquiry_std(struct ctl_scsiio *ctsio
CTL_DEBUG_PRINT(("additional_length = %d\n",
inq_ptr->additional_length));
- inq_ptr->spc3_flags = SPC3_SID_3PC;
- if (!ctl_is_single)
- inq_ptr->spc3_flags |= SPC3_SID_TPGS_IMPLICIT;
+ inq_ptr->spc3_flags = SPC3_SID_3PC | SPC3_SID_TPGS_IMPLICIT;
/* 16 bit addressing */
if (port_type == CTL_PORT_SCSI)
inq_ptr->spc2_flags = SPC2_SID_ADDR16;
More information about the svn-src-all
mailing list