aboutsummaryrefslogtreecommitdiff
path: root/share/examples/scsi_target
diff options
context:
space:
mode:
authorNate Lawson <njl@FreeBSD.org>2004-01-09 19:26:30 +0000
committerNate Lawson <njl@FreeBSD.org>2004-01-09 19:26:30 +0000
commitdaa66c2c6024de891197d0bdfbf326c518617a6b (patch)
tree42766fe43dc1e5d58d5865b6d48a6ebb94b6ac71 /share/examples/scsi_target
parent6d38a06c8575d0e13f48037de984e9d66555eda8 (diff)
Bump the max number of initiators to 256 from 16. This is appropriate for
fibre channel and shouldn't hurt SPI.
Notes
Notes: svn path=/head/; revision=124307
Diffstat (limited to 'share/examples/scsi_target')
-rw-r--r--share/examples/scsi_target/scsi_target.h6
1 files 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 */