Module Name:    src
Committed By:   reinoud
Date:           Sun Jul 26 15:29:00 UTC 2009

Modified Files:
        src/sys/dev/scsipi: cd.c

Log Message:
Significantly bump time for SCSI track/disc closure. DVD-RW when used
sequentially can significantly take more time.


To generate a diff of this commit:
cvs rdiff -u -r1.293 -r1.294 src/sys/dev/scsipi/cd.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/scsipi/cd.c
diff -u src/sys/dev/scsipi/cd.c:1.293 src/sys/dev/scsipi/cd.c:1.294
--- src/sys/dev/scsipi/cd.c:1.293	Fri Jun  5 21:52:32 2009
+++ src/sys/dev/scsipi/cd.c	Sun Jul 26 15:29:00 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: cd.c,v 1.293 2009/06/05 21:52:32 haad Exp $	*/
+/*	$NetBSD: cd.c,v 1.294 2009/07/26 15:29:00 reinoud Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2001, 2003, 2004, 2005, 2008 The NetBSD Foundation,
@@ -50,7 +50,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cd.c,v 1.293 2009/06/05 21:52:32 haad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cd.c,v 1.294 2009/07/26 15:29:00 reinoud Exp $");
 
 #include "rnd.h"
 
@@ -3598,7 +3598,7 @@
 	error = scsipi_command(periph,
 		(void *) &close_cmd, sizeof(close_cmd),
 		NULL, 0,
-		CDRETRIES, 30000, NULL, flags);
+		CDRETRIES, 120000, NULL, flags);
 
 	return error;
 }

Reply via email to