svn commit: r336769 - stable/11/sys/cam/scsi

Alexander Motin mav at FreeBSD.org
Fri Jul 27 18:26:40 UTC 2018


Author: mav
Date: Fri Jul 27 18:26:38 2018
New Revision: 336769
URL: https://svnweb.freebsd.org/changeset/base/336769

Log:
  MFC r308296 (by scottl):
  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.

Modified:
  stable/11/sys/cam/scsi/scsi_all.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/cam/scsi/scsi_all.c
==============================================================================
--- stable/11/sys/cam/scsi/scsi_all.c	Fri Jul 27 18:18:20 2018	(r336768)
+++ stable/11/sys/cam/scsi/scsi_all.c	Fri Jul 27 18:26:38 2018	(r336769)
@@ -2327,7 +2327,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-stable mailing list