|
From: Kenn H. <ke...@us...> - 2004-08-13 23:45:24
|
Update of /cvsroot/linux-vax/kernel-2.5/drivers/vax/scsi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8771/drivers/vax/scsi Modified Files: vax-5380.c Log Message: Re-enable AUTOSENSE and increase the queue sizes again, now that we've got a workaround for the AUTOSENSE bug in NCR5380.c Index: vax-5380.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/drivers/vax/scsi/vax-5380.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- vax-5380.c 10 Aug 2004 22:12:26 -0000 1.3 +++ vax-5380.c 13 Aug 2004 23:45:15 -0000 1.4 @@ -17,7 +17,7 @@ #include "../../scsi/hosts.h" /* See NCR5380.c for the options that can be set */ -#undef AUTOSENSE +#define 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 = 1, + .can_queue = 32, .this_id = 6, .sg_tablesize = SG_ALL, - .cmd_per_lun = 1, + .cmd_per_lun = 2, .use_clustering = DISABLE_CLUSTERING, .proc_name = "vax-5380", .proc_info = NCR5380_proc_info, |