Update of /cvsroot/linux-vax/kernel-2.5/drivers/vax/scsi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11319/scsi
Modified Files:
vax-5380.c
Log Message:
Turn off AUTOSENSE option in NCR5380 driver - allows spin-up at boot to
work again. Also limit to one outstanding command at a time to prevent
a warning about possible loss of error information.
Index: vax-5380.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/vax/scsi/vax-5380.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- vax-5380.c 8 Aug 2004 23:29:49 -0000 1.2
+++ vax-5380.c 10 Aug 2004 22:12:26 -0000 1.3
@@ -17,7 +17,7 @@
#include "../../scsi/hosts.h"
/* See NCR5380.c for the options that can be set */
-#define AUTOSENSE
+#undef AUTOSENSE
#define NCR5380_implementation_fields \
unsigned volatile char *base
@@ -62,10 +62,10 @@
.eh_bus_reset_handler = NCR5380_bus_reset,
.eh_device_reset_handler = NCR5380_device_reset,
.eh_host_reset_handler = NCR5380_host_reset,
- .can_queue = 32,
+ .can_queue = 1,
.this_id = 6,
.sg_tablesize = SG_ALL,
- .cmd_per_lun = 2,
+ .cmd_per_lun = 1,
.use_clustering = DISABLE_CLUSTERING,
.proc_name = "vax-5380",
.proc_info = NCR5380_proc_info,
|