From daa66c2c6024de891197d0bdfbf326c518617a6b Mon Sep 17 00:00:00 2001 From: Nate Lawson Date: Fri, 9 Jan 2004 19:26:30 +0000 Subject: [PATCH] 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 4f7ad68687da..4ae80e5bee14 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 */