From 470f844116dcc2c1d05a35f0a46db491f06424b7 Mon Sep 17 00:00:00 2001 From: njl Date: Fri, 9 Jan 2004 19:26:30 +0000 Subject: Bump the max number of initiators to 256 from 16. This is appropriate for fibre channel and shouldn't hurt SPI. --- share/examples/scsi_target/scsi_target.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/share/examples/scsi_target/scsi_target.h b/share/examples/scsi_target/scsi_target.h index 4f7ad68..4ae80e5 100644 --- a/share/examples/scsi_target/scsi_target.h +++ b/share/examples/scsi_target/scsi_target.h @@ -32,10 +32,10 @@ #define _SCSI_TARGET_H /* - * Maximum number of parallel commands to accept - * Set to 256 for Fibre Channel (SPI is 16) + * Maximum number of parallel commands to accept, + * 256 for Fibre Channel (SPI is 16). */ -#define MAX_INITIATORS 16 +#define MAX_INITIATORS 256 #define SECTOR_SIZE 512 #define MAX_EVENTS (MAX_INITIATORS + 5) /* kqueue for AIO, signals */ -- cgit v1.1