From: <vl...@us...> - 2007-09-25 13:39:34
|
Revision: 200 http://scst.svn.sourceforge.net/scst/?rev=200&view=rev Author: vlnb Date: 2007-09-25 06:39:25 -0700 (Tue, 25 Sep 2007) Log Message: ----------- - Increased INCOMING_MAX as suggested in http://blog.wpkg.org/2007/09/09/solving-reliability-and-scalability-problems-with-iscsi/. - Minor Makefile fixes Modified Paths: -------------- trunk/Makefile trunk/iscsi-scst/usr/iscsi_scstd.c Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2007-09-25 09:52:53 UTC (rev 199) +++ trunk/Makefile 2007-09-25 13:39:25 UTC (rev 200) @@ -25,7 +25,7 @@ USR_DIR=usr/fileio ISCSI_DIR=iscsi-scst -#ISCSI_DISTDIR=../../../../iscsi_scst_inst +#ISCSI_DISTDIR=../../../iscsi_scst_inst help: @echo " all : make all" @@ -140,7 +140,7 @@ cd $(ISCSI_DIR) && $(MAKE) iscsi_install: - cd $(ISCSI_DIR) && $(MAKE) install + cd $(ISCSI_DIR) && $(MAKE) DISTDIR=$(ISCSI_DISTDIR) install iscsi_uninstall: cd $(ISCSI_DIR) && $(MAKE) uninstall Modified: trunk/iscsi-scst/usr/iscsi_scstd.c =================================================================== --- trunk/iscsi-scst/usr/iscsi_scstd.c 2007-09-25 09:52:53 UTC (rev 199) +++ trunk/iscsi-scst/usr/iscsi_scstd.c 2007-09-25 13:39:25 UTC (rev 200) @@ -39,7 +39,7 @@ #include "iscsi_adm.h" #define LISTEN_MAX 8 -#define INCOMING_MAX 32 +#define INCOMING_MAX 256 enum { POLL_LISTEN, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |