svn commit: r273309 - stable/10/sys/cam/ctl

Alexander Motin mav at FreeBSD.org
Mon Oct 20 07:31:24 UTC 2014


Author: mav
Date: Mon Oct 20 07:31:23 2014
New Revision: 273309
URL: https://svnweb.freebsd.org/changeset/base/273309

Log:
  MFC r272597: Fix length of Extended INQUIRY Data VPD page.

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 20 07:29:43 2014	(r273308)
+++ stable/10/sys/cam/ctl/ctl.c	Mon Oct 20 07:31:23 2014	(r273309)
@@ -9914,9 +9914,7 @@ ctl_inquiry_evpd_eid(struct ctl_scsiio *
 
 	lun = (struct ctl_lun *)ctsio->io_hdr.ctl_private[CTL_PRIV_LUN].ptr;
 
-	data_len = sizeof(struct scsi_vpd_mode_page_policy) +
-	    sizeof(struct scsi_vpd_mode_page_policy_descr);
-
+	data_len = sizeof(struct scsi_vpd_extended_inquiry_data);
 	ctsio->kern_data_ptr = malloc(data_len, M_CTL, M_WAITOK | M_ZERO);
 	eid_ptr = (struct scsi_vpd_extended_inquiry_data *)ctsio->kern_data_ptr;
 	ctsio->kern_sg_entries = 0;


More information about the svn-src-all mailing list