[master] 212c16e Increase the session allocation to 512 to make space for IPv6 proxie'd addresses.

Poul-Henning Kamp phk at FreeBSD.org
Wed Apr 8 14:07:15 CEST 2015


commit 212c16e65e16fa188dbc551361ff9569d0810597
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Wed Apr 8 12:06:37 2015 +0000

    Increase the session allocation to 512 to make space for IPv6
    proxie'd addresses.

diff --git a/bin/varnishd/mgt/mgt_param_tbl.c b/bin/varnishd/mgt/mgt_param_tbl.c
index 071d7ed..ceb6b35 100644
--- a/bin/varnishd/mgt/mgt_param_tbl.c
+++ b/bin/varnishd/mgt/mgt_param_tbl.c
@@ -70,10 +70,12 @@ struct parspec mgt_parspec[] = {
 	{ "workspace_session",
 		tweak_bytes_u, &mgt_param.workspace_session,
 		"256", NULL,
-		"Bytes of workspace for session and TCP connection addresses."
+		"Allocation size for session structure and workspace.  "
+		"  The workspace is primarily used for TCP connection "
+		"addresses."
 		"  If larger than 4k, use a multiple of 4k for VM efficiency.",
 		DELAYED_EFFECT,
-		"384", "bytes" },
+		"512", "bytes" },
 	{ "workspace_client",
 		tweak_bytes_u, &mgt_param.workspace_client,
 		"9k", NULL,



More information about the varnish-commit mailing list