- 31 Mar, 2016 1 commit
-
-
Dridi Boukelmoune authored
-
- 29 Mar, 2016 18 commits
-
-
Poul-Henning Kamp authored
-
Federico G. Schwindt authored
-
Federico G. Schwindt authored
Raise a ParseError exception if not. Fixes #1885.
-
Federico G. Schwindt authored
-
Poul-Henning Kamp authored
-
Poul-Henning Kamp authored
When ESI delivering a gzip'ed object, emit the GZIP header+tail precisely if no parent ESI has done so. Fixes: #1878 Testcase by: fgs
-
Dridi Boukelmoune authored
-
Lasse Karstensen authored
-
Poul-Henning Kamp authored
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
-
Dridi Boukelmoune authored
When varnishtest creates a socket barrier, it will bind a socket and listen to incoming connections. Once the number of expected connections is open, connections are closed. Barrier users only need to connect to the socket, read "nothing" and block until the connection is closed. It allows virtually any process to sync with varnishtest. The barrier will provide macros with its socket information.
-
Dridi Boukelmoune authored
This is similar ASSERT_CLI, in order to make socket barriers creation thread-safe.
-
Dridi Boukelmoune authored
All usage of cyclic semaphores has been replaced by non-cylic barriers, except in the disabled test r01252 that absolutely needs one. It still passes when run with the proper requirements.
-
Dridi Boukelmoune authored
This is useful in HTTP loops where it's impossible to predict and use an array of barriers. All cycles expect the same number of waiters, unlike semaphores.
-
Dridi Boukelmoune authored
They work like semaphores, except that they need explicit initialization and can optionally be shared between processes.
-
Pål Hermunn Johansen authored
This fixes a problem when a backend replies with 304 Not Modified (after a http conditional request from varnish) and does not supply a header that was duplicate in the cached object. Before this patch, varnish would only supply (by copying from the expired object) the first instance of a duplicate header.
-
Poul-Henning Kamp authored
-
- 28 Mar, 2016 1 commit
-
-
Federico G. Schwindt authored
-
- 23 Mar, 2016 5 commits
-
-
Poul-Henning Kamp authored
-
Poul-Henning Kamp authored
-
Poul-Henning Kamp authored
This reverts commit e7779bcb.
-
Poul-Henning Kamp authored
-
Poul-Henning Kamp authored
-
- 21 Mar, 2016 2 commits
-
-
arianna-aondio authored
Add "last updated" timestamp for backend health in varnishadm
-
Arianna Aondio authored
-
- 20 Mar, 2016 1 commit
-
-
Federico G. Schwindt authored
OK'd by phk@. Fixes #1883.
-
- 18 Mar, 2016 5 commits
-
-
Dridi Boukelmoune authored
Spotted by Coverity
-
Dag Haavi Finstad authored
Fixes a bug where we wait for an event to fire on the backend socket prior to passing the request body. The VBT_Wait call is now handled in vbe_dir_finish. Test case by thomaslc Fixes: #1806
-
Dridi Boukelmoune authored
This reverts commit eaac258d. The benefits in terms of readability are uncertain and YMMV, but compilers seem to find it harder to optimize too: cmpl $0x0,-0x205c(%rbp) sete %al movzbl %al,%eax or %rax,%rdx Before the change it would translate to just: or $0x1,%rax mov %rax,%rdx Spotted by @fgsch
-
Dridi Boukelmoune authored
This patch was created using Coccinelle and the following steps: $ cat >take.cocci <<EOF @@ expression t, f; constant m; @@ - AN(f); - t = *f; - *f = NULL; - CHECK_OBJ_NOTNULL(t, m); + TAKE_OBJ_NOTNULL(t, f, m); EOF $ spatch --sp-file take.cocci --dir . --in-place
-
Dridi Boukelmoune authored
There's a recurring pattern throughout the code base of taking over a reference (by nulling the original) essentially when resources are freed. Instead of repeating this anti dangling pointers measure, it can be wrapped in a documenting utility macro.
-
- 16 Mar, 2016 4 commits
-
-
Federico G. Schwindt authored
-
Federico G. Schwindt authored
They're part of the tree now.
-
Federico G. Schwindt authored
-
Federico G. Schwindt authored
With this you can also filter based on logexpect's vsl arguments.
-
- 14 Mar, 2016 3 commits
-
-
Dridi Boukelmoune authored
-
Federico G. Schwindt authored
Fixes #1869
-
Poul-Henning Kamp authored
Fixes #1876
-