Index: benchmark/io/http/main.cfa
===================================================================
--- benchmark/io/http/main.cfa	(revision 8e3034da48f487fb3b3a4090d3b5ea7d5cfbed78)
+++ benchmark/io/http/main.cfa	(revision e96e439fee7afae6706b108ea22bda2bb315b052)
@@ -15,5 +15,4 @@
 #include <thread.hfa>
 
-#include "channel.hfa"
 #include "filecache.hfa"
 #include "options.hfa"
@@ -29,6 +28,4 @@
 // Globals
 //=============================================================================================
-channel & wait_connect;
-
 struct ServerProc {
 	processor self;
@@ -96,7 +93,4 @@
 		#endif
 		options.clopts.instance = &cl;
-
-		channel chan = { options.clopts.chan_size };
-		&wait_connect = &chan;
 
 		int pipe_cnt = options.clopts.nworkers * 2;
Index: benchmark/io/http/options.cfa
===================================================================
--- benchmark/io/http/options.cfa	(revision 8e3034da48f487fb3b3a4090d3b5ea7d5cfbed78)
+++ benchmark/io/http/options.cfa	(revision e96e439fee7afae6706b108ea22bda2bb315b052)
@@ -31,5 +31,4 @@
 		1,     // nworkers;
 		0,     // flags;
-		10,    // chan_size;
 		false, // procstats
 		false, // viewhalts
@@ -51,5 +50,4 @@
 		{'t', "threads",        "Number of worker threads to use", options.clopts.nworkers},
 		{'b', "accept-backlog", "Maximum number of pending accepts", options.socket.backlog},
-		{'B', "channel-size",   "Maximum number of accepted connection pending", options.clopts.chan_size},
 		{'r', "request_len",    "Maximum number of bytes in the http request, requests with more data will be answered with Http Code 414", options.socket.buflen},
 		{'S', "seed",           "seed to use for hashing", options.file_cache.hash_seed },
Index: benchmark/io/http/options.hfa
===================================================================
--- benchmark/io/http/options.hfa	(revision 8e3034da48f487fb3b3a4090d3b5ea7d5cfbed78)
+++ benchmark/io/http/options.hfa	(revision e96e439fee7afae6706b108ea22bda2bb315b052)
@@ -26,5 +26,4 @@
 		int nworkers;
 		io_context_params params;
-		int chan_size;
 		bool procstats;
 		bool viewhalts;
Index: benchmark/io/http/worker.hfa
===================================================================
--- benchmark/io/http/worker.hfa	(revision 8e3034da48f487fb3b3a4090d3b5ea7d5cfbed78)
+++ benchmark/io/http/worker.hfa	(revision e96e439fee7afae6706b108ea22bda2bb315b052)
@@ -6,8 +6,4 @@
 	#include <sys/socket.h>
 }
-
-#include "channel.hfa"
-
-extern channel & wait_connect;
 
 //=============================================================================================
