svn commit: r272224 - head/sys/cam/ctl
Alexander Motin
mav at FreeBSD.org
Sat Sep 27 20:08:35 UTC 2014
Author: mav
Date: Sat Sep 27 20:08:34 2014
New Revision: 272224
URL: http://svnweb.freebsd.org/changeset/base/272224
Log:
Fix page length reported for Block Limits VPD page.
Modified:
head/sys/cam/ctl/ctl.c
Modified: head/sys/cam/ctl/ctl.c
==============================================================================
--- head/sys/cam/ctl/ctl.c Sat Sep 27 19:14:22 2014 (r272223)
+++ head/sys/cam/ctl/ctl.c Sat Sep 27 20:08:34 2014 (r272224)
@@ -10285,7 +10285,7 @@ ctl_inquiry_evpd_block_limits(struct ctl
bl_ptr->device = (SID_QUAL_LU_OFFLINE << 5) | T_DIRECT;
bl_ptr->page_code = SVPD_BLOCK_LIMITS;
- scsi_ulto2b(sizeof(*bl_ptr), bl_ptr->page_length);
+ scsi_ulto2b(sizeof(*bl_ptr) - 4, bl_ptr->page_length);
bl_ptr->max_cmp_write_len = 0xff;
scsi_ulto4b(0xffffffff, bl_ptr->max_txfer_len);
if (lun != NULL) {
More information about the svn-src-all
mailing list