svn commit: r344431 - in stable/10/sys: conf dev/ata

Andriy Voskoboinyk avos at FreeBSD.org
Thu Feb 21 09:54:58 UTC 2019


Author: avos
Date: Thu Feb 21 09:54:57 2019
New Revision: 344431
URL: https://svnweb.freebsd.org/changeset/base/344431

Log:
  MFC r344198:
  GC ATA_REQUEST_TIMEOUT option remnants
  
  It was removed from code in r249083 and from sys/conf/options in r249213.
  
  PR:		193935, 222170

Modified:
  stable/10/sys/conf/NOTES
  stable/10/sys/dev/ata/ata-all.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/conf/NOTES
==============================================================================
--- stable/10/sys/conf/NOTES	Thu Feb 21 09:54:10 2019	(r344430)
+++ stable/10/sys/conf/NOTES	Thu Feb 21 09:54:57 2019	(r344431)
@@ -1765,11 +1765,8 @@ hint.ata.1.irq="15"
 #
 # ATA_STATIC_ID:	controller numbering is static ie depends on location
 #			else the device numbers are dynamically allocated.
-# ATA_REQUEST_TIMEOUT:	the number of seconds to wait for an ATA request
-#			before timing out.
 
 options 	ATA_STATIC_ID
-#options 	ATA_REQUEST_TIMEOUT=10
 
 #
 # Standard floppy disk controllers and floppy tapes, supports

Modified: stable/10/sys/dev/ata/ata-all.h
==============================================================================
--- stable/10/sys/dev/ata/ata-all.h	Thu Feb 21 09:54:10 2019	(r344430)
+++ stable/10/sys/dev/ata/ata-all.h	Thu Feb 21 09:54:57 2019	(r344431)
@@ -207,10 +207,6 @@
 #define ATA_OP_FINISHED                 1
 #define ATA_MAX_28BIT_LBA               268435455UL
 
-#ifndef	ATA_REQUEST_TIMEOUT
-#define	ATA_REQUEST_TIMEOUT		10
-#endif
-
 /* structure used for composite atomic operations */
 #define MAX_COMPOSITES          32              /* u_int32_t bits */
 struct ata_composite {


More information about the svn-src-all mailing list