svn commit: r308296 - head/sys/cam/scsi

Scott Long scottl at FreeBSD.org
Fri Nov 4 16:56:37 UTC 2016


Author: scottl
Date: Fri Nov  4 16:56:36 2016
New Revision: 308296
URL: https://svnweb.freebsd.org/changeset/base/308296

Log:
  asc/ascq 44/0 is typically a non-transient, permanent error (at least until
  the components are reset).  Therefore retries are pointless.  This is very
  visible in SATL systems, for example an LSI SAS controller and a SATA HDD/SSD.
  
  Reviewed by:	ken
  Obtained from:	Netflix
  MFC after:	3 days

Modified:
  head/sys/cam/scsi/scsi_all.c

Modified: head/sys/cam/scsi/scsi_all.c
==============================================================================
--- head/sys/cam/scsi/scsi_all.c	Fri Nov  4 16:24:38 2016	(r308295)
+++ head/sys/cam/scsi/scsi_all.c	Fri Nov  4 16:56:36 2016	(r308296)
@@ -2331,7 +2331,7 @@ static struct asc_table_entry asc_table[
 	{ SST(0x43, 0x00, SS_RDEF,
 	    "Message error") },
 	/* DTLPWROMAEBKVF */
-	{ SST(0x44, 0x00, SS_RDEF,
+	{ SST(0x44, 0x00, SS_FATAL | EIO,
 	    "Internal target failure") },
 	/* DT P   MAEBKVF */
 	{ SST(0x44, 0x01, SS_RDEF,	/* XXX TBD */


More information about the svn-src-head mailing list