[master] 1c7c400 Also reduce worker thread workspace size for 32bit systems now that it has its own parameter.

Poul-Henning Kamp phk at varnish-cache.org
Wed Feb 23 16:14:08 CET 2011


commit 1c7c40056d6ec15b11220ce5a022a3acdf1020a0
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Wed Feb 23 15:13:44 2011 +0000

    Also reduce worker thread workspace size for 32bit systems now that
    it has its own parameter.

diff --git a/bin/varnishd/varnishd.c b/bin/varnishd/varnishd.c
index 0e16da7..9583cc4 100644
--- a/bin/varnishd/varnishd.c
+++ b/bin/varnishd/varnishd.c
@@ -418,6 +418,9 @@ main(int argc, char * const *argv)
 		MCF_ParamSet(cli, "sess_workspace", "16384");
 		cli_check(cli);
 
+		MCF_ParamSet(cli, "thread_pool_workspace", "16384");
+		cli_check(cli);
+
 		MCF_ParamSet(cli, "thread_pool_stack", "32bit");
 		cli_check(cli);
 



More information about the varnish-commit mailing list