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
ee1f86d2
Commit
ee1f86d2
authored
Apr 30, 2012
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Writing an article about the utility of asserts, I noticed some inconsistent
whitespace with asserts.
parent
1d588b3f
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
11 deletions
+11
-11
cache_backend_poll.c
bin/varnishd/cache/cache_backend_poll.c
+1
-1
cache_ban.c
bin/varnishd/cache/cache_ban.c
+1
-1
cache_dir_round_robin.c
bin/varnishd/cache/cache_dir_round_robin.c
+1
-1
cache_esi_deliver.c
bin/varnishd/cache/cache_esi_deliver.c
+1
-1
cache_expire.c
bin/varnishd/cache/cache_expire.c
+1
-1
cache_fetch.c
bin/varnishd/cache/cache_fetch.c
+1
-1
cache_shmlog.c
bin/varnishd/cache/cache_shmlog.c
+1
-1
storage_persistent.c
bin/varnishd/storage/storage_persistent.c
+1
-1
vtcp.c
lib/libvarnish/vtcp.c
+1
-1
vcc_action.c
lib/libvcl/vcc_action.c
+1
-1
vcc_symb.c
lib/libvcl/vcc_symb.c
+1
-1
No files found.
bin/varnishd/cache/cache_backend_poll.c
View file @
ee1f86d2
...
...
@@ -500,7 +500,7 @@ VBP_Insert(struct backend *b, const struct vrt_backend_probe *p,
}
VTAILQ_FOREACH
(
vcl
,
&
vt
->
vcls
,
list
)
assert
(
vcl
->
probep
!=
p
);
assert
(
vcl
->
probep
!=
p
);
vcl
=
vbp_new_vcl
(
p
,
hosthdr
);
Lck_Lock
(
&
vbp_mtx
);
...
...
bin/varnishd/cache/cache_ban.c
View file @
ee1f86d2
...
...
@@ -525,7 +525,7 @@ BAN_Reload(const uint8_t *ban, unsigned len)
VTAILQ_FOREACH
(
b
,
&
ban_head
,
list
)
{
t1
=
ban_time
(
b
->
spec
);
assert
(
t1
<
t2
);
assert
(
t1
<
t2
);
t2
=
t1
;
if
(
t1
==
t0
)
{
Lck_Unlock
(
&
ban_mtx
);
...
...
bin/varnishd/cache/cache_dir_round_robin.c
View file @
ee1f86d2
...
...
@@ -152,7 +152,7 @@ vrt_init_dir(struct cli *cli, struct director **bp, int idx,
te
=
t
->
members
;
for
(
i
=
0
;
i
<
t
->
nmember
;
i
++
,
vh
++
,
te
++
)
{
vh
->
backend
=
bp
[
te
->
host
];
AN
(
vh
->
backend
);
AN
(
vh
->
backend
);
}
vs
->
nhosts
=
t
->
nmember
;
vs
->
next_host
=
0
;
...
...
bin/varnishd/cache/cache_esi_deliver.c
View file @
ee1f86d2
...
...
@@ -326,7 +326,7 @@ ESI_Deliver(struct sess *sp)
p
=
e
;
break
;
}
assert
(
i
==
VGZ_OK
||
i
==
VGZ_END
);
assert
(
i
==
VGZ_OK
||
i
==
VGZ_END
);
}
else
{
/*
* Ungzip'ed VEC, ungzip'ed ESI response
...
...
bin/varnishd/cache/cache_expire.c
View file @
ee1f86d2
...
...
@@ -424,7 +424,7 @@ EXP_NukeOne(struct busyobj *bo, struct lru *lru)
Lck_Lock
(
&
exp_mtx
);
VTAILQ_FOREACH
(
oc
,
&
lru
->
lru_head
,
lru_list
)
{
CHECK_OBJ_NOTNULL
(
oc
,
OBJCORE_MAGIC
);
assert
(
oc
->
timer_idx
!=
BINHEAP_NOIDX
);
assert
(
oc
->
timer_idx
!=
BINHEAP_NOIDX
);
/*
* It wont release any space if we cannot release the last
* reference, besides, if somebody else has a reference,
...
...
bin/varnishd/cache/cache_fetch.c
View file @
ee1f86d2
...
...
@@ -666,7 +666,7 @@ FetchBody(struct worker *wrk, void *priv)
uu
+=
st
->
len
;
if
(
bo
->
do_stream
)
/* Streaming might have started freeing stuff */
assert
(
uu
<=
obj
->
len
);
assert
(
uu
<=
obj
->
len
);
else
assert
(
uu
==
obj
->
len
);
...
...
bin/varnishd/cache/cache_shmlog.c
View file @
ee1f86d2
...
...
@@ -224,7 +224,7 @@ wslr(struct vsl_log *vsl, enum VSL_tag_e tag, int id, txt t)
/* Wrap if necessary */
if
(
VSL_END
(
vsl
->
wlp
,
l
)
>=
vsl
->
wle
)
VSL_Flush
(
vsl
,
1
);
assert
(
VSL_END
(
vsl
->
wlp
,
l
)
<
vsl
->
wle
);
assert
(
VSL_END
(
vsl
->
wlp
,
l
)
<
vsl
->
wle
);
memcpy
(
VSL_DATA
(
vsl
->
wlp
),
t
.
b
,
l
);
vsl_hdr
(
tag
,
vsl
->
wlp
,
l
,
id
);
vsl
->
wlp
=
VSL_END
(
vsl
->
wlp
,
l
);
...
...
bin/varnishd/storage/storage_persistent.c
View file @
ee1f86d2
...
...
@@ -216,7 +216,7 @@ smp_open_segs(struct smp_sc *sc, struct smp_signctx *ctx)
}
}
assert
(
l
>=
sc
->
free_reserve
);
assert
(
l
>=
sc
->
free_reserve
);
sg1
=
NULL
;
...
...
lib/libvarnish/vtcp.c
View file @
ee1f86d2
...
...
@@ -268,7 +268,7 @@ VTCP_close(int *s)
i
=
close
(
*
s
);
assert
(
VTCP_Check
(
i
));
assert
(
VTCP_Check
(
i
));
*
s
=
-
1
;
}
...
...
lib/libvcl/vcc_action.c
View file @
ee1f86d2
...
...
@@ -352,7 +352,7 @@ vcc_ParseAction(struct vcc *tl)
const
struct
symbol
*
sym
;
at
=
tl
->
t
;
assert
(
at
->
tok
==
ID
);
assert
(
at
->
tok
==
ID
);
for
(
atp
=
action_table
;
atp
->
name
!=
NULL
;
atp
++
)
{
if
(
vcc_IdIs
(
at
,
atp
->
name
))
{
if
(
atp
->
bitmask
!=
0
)
...
...
lib/libvcl/vcc_symb.c
View file @
ee1f86d2
...
...
@@ -118,7 +118,7 @@ VCC_FindSymbol(struct vcc *tl, const struct token *t, enum symkind kind)
if
(
sym
->
kind
==
SYM_WILDCARD
&&
(
t
->
e
-
t
->
b
>
sym
->
nlen
)
&&
!
memcmp
(
sym
->
name
,
t
->
b
,
sym
->
nlen
))
{
AN
(
sym
->
wildcard
);
AN
(
sym
->
wildcard
);
return
(
sym
->
wildcard
(
tl
,
t
,
sym
));
}
if
(
kind
!=
SYM_NONE
&&
kind
!=
sym
->
kind
)
...
...
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