Module Name:    src
Committed By:   kiyohara
Date:           Mon Feb 17 13:41:20 UTC 2014

Modified Files:
        src/sys/dev/ic: mvsata.c

Log Message:
More delay() for some drives.


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/ic/mvsata.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/ic/mvsata.c
diff -u src/sys/dev/ic/mvsata.c:1.32 src/sys/dev/ic/mvsata.c:1.33
--- src/sys/dev/ic/mvsata.c:1.32	Sun Sep  1 11:14:46 2013
+++ src/sys/dev/ic/mvsata.c	Mon Feb 17 13:41:20 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: mvsata.c,v 1.32 2013/09/01 11:14:46 kiyohara Exp $	*/
+/*	$NetBSD: mvsata.c,v 1.33 2014/02/17 13:41:20 kiyohara Exp $	*/
 /*
  * Copyright (c) 2008 KIYOHARA Takashi
  * All rights reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mvsata.c,v 1.32 2013/09/01 11:14:46 kiyohara Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mvsata.c,v 1.33 2014/02/17 13:41:20 kiyohara Exp $");
 
 #include "opt_mvsata.h"
 
@@ -1694,7 +1694,7 @@ again:
 		ata_c->flags |= AT_TIMEOU;
 		goto out;
 	}
-	delay(10);	/* XXXXX: Delay more times. */
+	delay(20);	/* XXXXX: Delay more times. */
 	if (ata_c->flags & AT_READ) {
 		if ((chp->ch_status & WDCS_DRQ) == 0) {
 			ata_c->flags |= AT_TIMEOU;

Reply via email to