Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
88cf4e0d
Commit
88cf4e0d
authored
Feb 18, 2016
by
Dridi Boukelmoune
Committed by
Lasse Karstensen
Feb 25, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
parent
870b74ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
cache_fetch.c
bin/varnishd/cache/cache_fetch.c
+10
-7
No files found.
bin/varnishd/cache/cache_fetch.c
View file @
88cf4e0d
...
...
@@ -535,13 +535,16 @@ vbf_fetch_body_helper(struct busyobj *bo)
*/
#define vbf_vfp_push(bo, vfp, top) \
if (VFP_Push((bo)->vfc, (vfp), (top)) == NULL) { \
assert (WS_Overflowed((bo)->vfc->http->ws)); \
(void)VFP_Error((bo)->vfc, "workspace_backend overflow"); \
(bo)->htc->doclose = SC_OVERLOAD; \
VDI_Finish((bo)->wrk, bo); \
return (F_STP_ERROR); \
}
do { \
if (VFP_Push((bo)->vfc, (vfp), (top)) == NULL) { \
assert (WS_Overflowed((bo)->vfc->http->ws)); \
(void)VFP_Error((bo)->vfc, \
"workspace_backend overflow"); \
(bo)->htc->doclose = SC_OVERLOAD; \
VDI_Finish((bo)->wrk, bo); \
return (F_STP_ERROR); \
} \
} while (0)
static
enum
fetch_step
vbf_stp_fetch
(
struct
worker
*
wrk
,
struct
busyobj
*
bo
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment