Commit 232f9187 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Use the right size-tweaking function, so Ingvar doesn't have to

buy 512TB ram to run Varnish on ppc64.
parent 9c933552
......@@ -839,7 +839,7 @@ static const struct parspec input_parspec[] = {
EXPERIMENTAL,
"50", "allocations" },
{ "fetch_chunksize",
tweak_bytes_u,
tweak_bytes,
&mgt_param.fetch_chunksize, 4 * 1024, UINT_MAX,
"The default chunksize used by fetcher. "
"This should be bigger than the majority of objects with "
......@@ -849,7 +849,7 @@ static const struct parspec input_parspec[] = {
EXPERIMENTAL,
"128k", "bytes" },
{ "fetch_maxchunksize",
tweak_bytes_u,
tweak_bytes,
&mgt_param.fetch_maxchunksize, 64 * 1024, UINT_MAX,
"The maximum chunksize we attempt to allocate from storage. "
"Making this too large may cause delays and storage "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment