[master] 1a02024 Increase the 'client_workspace' for 32bit machines to be twice the size of the 'http_req_size' so that we don't run out of WS in case of client pipelining.

Poul-Henning Kamp phk at varnish-cache.org
Mon Nov 5 16:23:51 CET 2012


commit 1a02024a9ece62d55d40deebd971e485775c5d9d
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Mon Nov 5 15:22:02 2012 +0000

    Increase the 'client_workspace' for 32bit machines to be twice the
    size of the 'http_req_size' so that we don't run out of WS in case
    of client pipelining.
    
    Fixes	#1185

diff --git a/bin/varnishd/mgt/mgt_main.c b/bin/varnishd/mgt/mgt_main.c
index a760b40..1b7f1e3 100644
--- a/bin/varnishd/mgt/mgt_main.c
+++ b/bin/varnishd/mgt/mgt_main.c
@@ -385,7 +385,7 @@ main(int argc, char * const *argv)
 		 * Adjust default parameters for 32 bit systems to conserve
 		 * VM space.
 		 */
-		MCF_ParamSet(cli, "workspace_client", "16k");
+		MCF_ParamSet(cli, "workspace_client", "24k");
 		cli_check(cli);
 
 		MCF_ParamSet(cli, "workspace_backend", "16k");



More information about the varnish-commit mailing list