Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Jun 2014 01:01:54 +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: r268025 - head/sys/dev/isci
Message-ID:  <201406300101.s5U11sWu047476@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: scottl
Date: Mon Jun 30 01:01:54 2014
New Revision: 268025
URL: http://svnweb.freebsd.org/changeset/base/268025

Log:
  In rare cases, a SATA drive can stop responding to commands and trigger a
  reset device task request from the driver.  If the drive fails to respond
  with a signature FIS, the driver would previously get into an endless retry
  loop, stalling all I/O to the drive and keeping user processes stranded.
  Instead, fail the i/o and invalidate the device if the task management
  command times out.  This is controllable with the sysctl and tunable
  hw.isci.fail_on_task_timeout
  dev.isci.0.fail_on_task_timeout
  
  The default for these is 1.
  
  Reviewed by:	jimharris
  Obtained from:	Netflix, Inc.
  MFC after:	2 days

Modified:
  head/sys/dev/isci/isci.h
  head/sys/dev/isci/isci_controller.c
  head/sys/dev/isci/isci_sysctl.c
  head/sys/dev/isci/isci_task_request.c

Modified: head/sys/dev/isci/isci.h
==============================================================================
--- head/sys/dev/isci/isci.h	Mon Jun 30 00:41:46 2014	(r268024)
+++ head/sys/dev/isci/isci.h	Mon Jun 30 01:01:54 2014	(r268025)
@@ -164,6 +164,7 @@ struct ISCI_CONTROLLER
 	uint32_t		initial_discovery_mask;
 	BOOL			is_frozen;
 	BOOL			release_queued_ccbs;
+	BOOL			fail_on_task_timeout;
 	uint8_t			*remote_device_memory;
 	struct ISCI_MEMORY	cached_controller_memory;
 	struct ISCI_MEMORY	uncached_controller_memory;

Modified: head/sys/dev/isci/isci_controller.c
==============================================================================
--- head/sys/dev/isci/isci_controller.c	Mon Jun 30 00:41:46 2014	(r268024)
+++ head/sys/dev/isci/isci_controller.c	Mon Jun 30 01:01:54 2014	(r268025)
@@ -300,6 +300,8 @@ SCI_STATUS isci_controller_initialize(st
 	SCI_CONTROLLER_HANDLE_T scic_controller_handle;
 	char led_name[64];
 	unsigned long tunable;
+	uint32_t io_shortage;
+	uint32_t fail_on_timeout;
 	int i;
 
 	scic_controller_handle =
@@ -365,10 +367,12 @@ SCI_STATUS isci_controller_initialize(st
 	 *  this io_shortage parameter, which will tell CAM that we have a
 	 *  large queue depth than we really do.
 	 */
-	uint32_t io_shortage = 0;
+	io_shortage = 0;
 	TUNABLE_INT_FETCH("hw.isci.io_shortage", &io_shortage);
 	controller->sim_queue_depth += io_shortage;
 
+	fail_on_timeout = 1;
+	TUNABLE_INT_FETCH("hw.isci.fail_on_task_timeout", &fail_on_timeout);
 	/* Attach to CAM using xpt_bus_register now, then immediately freeze
 	 *  the simq.  It will get released later when initial domain discovery
 	 *  is complete.

Modified: head/sys/dev/isci/isci_sysctl.c
==============================================================================
--- head/sys/dev/isci/isci_sysctl.c	Mon Jun 30 00:41:46 2014	(r268024)
+++ head/sys/dev/isci/isci_sysctl.c	Mon Jun 30 01:01:54 2014	(r268025)
@@ -222,6 +222,24 @@ isci_sysctl_log_frozen_lun_masks(SYSCTL_
 	return (0);
 }
 
+static int
+isci_sysctl_fail_on_task_timeout(SYSCTL_HANDLER_ARGS)
+{
+	struct isci_softc	*isci = (struct isci_softc *)arg1;
+	int32_t			fail_on_timeout = 0;
+	int			error, i;
+
+	error = sysctl_handle_int(oidp, &fail_on_timeout, 0, req);
+
+	if (error || fail_on_timeout == 0)
+		return (error);
+
+	for (i = 0; i < isci->controller_count; i++)
+		isci->controllers[i].fail_on_task_timeout = fail_on_timeout;
+
+	return (0);
+}
+
 void isci_sysctl_initialize(struct isci_softc *isci)
 {
 	struct sysctl_ctx_list *sysctl_ctx = device_get_sysctl_ctx(isci->device);
@@ -259,5 +277,10 @@ void isci_sysctl_initialize(struct isci_
 	    "log_frozen_lun_masks", CTLTYPE_UINT| CTLFLAG_RW, isci, 0,
 	    isci_sysctl_log_frozen_lun_masks, "IU",
 	    "Log frozen lun masks to kernel log");
+
+	SYSCTL_ADD_PROC(sysctl_ctx, SYSCTL_CHILDREN(sysctl_tree), OID_AUTO,
+	    "fail_on_task_timeout", CTLTYPE_UINT | CTLFLAG_RW, isci, 0,
+	    isci_sysctl_fail_on_task_timeout, "IU",
+	    "Fail a command that has encountered a task management timeout");
 }
 

Modified: head/sys/dev/isci/isci_task_request.c
==============================================================================
--- head/sys/dev/isci/isci_task_request.c	Mon Jun 30 00:41:46 2014	(r268024)
+++ head/sys/dev/isci/isci_task_request.c	Mon Jun 30 01:01:54 2014	(r268025)
@@ -206,8 +206,17 @@ isci_task_request_complete(SCI_CONTROLLE
 		break;
 
 	case SCI_FAILURE_TIMEOUT:
-		retry_task = TRUE;
-		isci_log_message(0, "ISCI", "task timeout - retrying\n");
+		if (isci_controller->fail_on_task_timeout) {
+			retry_task = FALSE;
+			isci_log_message(0, "ISCI",
+			    "task timeout - not retrying\n");
+			scif_cb_domain_device_removed(isci_controller,
+			    isci_remote_device->domain, isci_remote_device);
+		} else {
+			retry_task = TRUE;
+			isci_log_message(0, "ISCI",
+			    "task timeout - retrying\n");
+		}
 		break;
 
 	case SCI_TASK_FAILURE:



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