Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Nov 2016 16:56:36 +0000 (UTC)
From:      Scott Long <scottl@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r308296 - head/sys/cam/scsi
Message-ID:  <201611041656.uA4GuaZF028619@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611041656.uA4GuaZF028619>