Fix length of Extended INQUIRY Data VPD page.

MFC after:	3 days
This commit is contained in:
Alexander Motin 2014-10-06 07:01:32 +00:00
parent 1d1b55fbba
commit 5554eb9bfc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=272597

View File

@ -9912,9 +9912,7 @@ ctl_inquiry_evpd_eid(struct ctl_scsiio *ctsio, int alloc_len)
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;