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
108276a1
Commit
108276a1
authored
Jul 22, 2014
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Strip marker bits from vxids
parent
e8641aac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
cache_panic.c
bin/varnishd/cache/cache_panic.c
+3
-2
No files found.
bin/varnishd/cache/cache_panic.c
View file @
108276a1
...
...
@@ -215,7 +215,7 @@ pan_object(const char *typ, const struct object *o)
const
struct
storage
*
st
;
VSB_printf
(
pan_vsp
,
" obj (%s) = %p {
\n
"
,
typ
,
o
);
VSB_printf
(
pan_vsp
,
" vxid = %u,
\n
"
,
o
->
vxid
);
VSB_printf
(
pan_vsp
,
" vxid = %u,
\n
"
,
VXID
(
o
->
vxid
)
);
pan_http
(
"obj"
,
o
->
http
,
4
);
VSB_printf
(
pan_vsp
,
" len = %jd,
\n
"
,
(
intmax_t
)
o
->
len
);
VSB_printf
(
pan_vsp
,
" store = {
\n
"
);
...
...
@@ -335,7 +335,8 @@ pan_req(const struct req *req)
VSB_printf
(
pan_vsp
,
"req = %p {
\n
"
,
req
);
VSB_printf
(
pan_vsp
,
" sp = %p, vxid = %u,"
,
req
->
sp
,
req
->
vsl
->
wid
);
VSB_printf
(
pan_vsp
,
" sp = %p, vxid = %u,"
,
req
->
sp
,
VXID
(
req
->
vsl
->
wid
));
switch
(
req
->
req_step
)
{
#define REQ_STEP(l, u, arg) case R_STP_##u: stp = "R_STP_" #u; break;
...
...
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