svn commit: r289913 - head/share/misc

Garrett Cooper ngie at FreeBSD.org
Sun Oct 25 03:16:10 UTC 2015


Author: ngie
Date: Sun Oct 25 03:16:08 2015
New Revision: 289913
URL: https://svnweb.freebsd.org/changeset/base/289913

Log:
  Use 't' (bits) not 'i' (bytes) for describing MRIE (aka
  "Method of Reporting Informational Exceptions") in the SCSI mode database as
  the field described in X3T10/94-190 (revision 4; page 2, table 1) [1.] is
  4 bits wide, not 4 bytes wide
  
  1. http://ftp.t10.org/ftp/t10/document.94/94-190r4.pdf
  
  Bug 200619
  MFC after: 1 week
  Reported by: Michael Baptist <mbaptist at isilon.com>
  Submitted by: Lars Skodje <lskodje at isilon.com>
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/share/misc/scsi_modes

Modified: head/share/misc/scsi_modes
==============================================================================
--- head/share/misc/scsi_modes	Sat Oct 24 23:46:32 2015	(r289912)
+++ head/share/misc/scsi_modes	Sun Oct 25 03:16:08 2015	(r289913)
@@ -106,7 +106,7 @@
 	{EBACKERR} t1
 	{LogErr} t1
 	{Reserved} *t4
-	{MRIE} b4
+	{MRIE} t4
 	{Interval Timer} i4
 	{Report Count} i4
 }


More information about the svn-src-all mailing list