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
fe780278
Commit
fe780278
authored
Oct 12, 2011
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move everything related to the storage-expansion-API into a subdirectory
where it will be protected from VMODs.
parent
ebd16016
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
27 additions
and
28 deletions
+27
-28
Makefile.am
bin/varnishd/Makefile.am
+12
-12
cache.h
bin/varnishd/cache.h
+0
-2
flint.sh
bin/varnishd/flint.sh
+1
-0
stevedore.c
bin/varnishd/storage/stevedore.c
+1
-1
stevedore_utils.c
bin/varnishd/storage/stevedore_utils.c
+1
-1
storage.h
bin/varnishd/storage/storage.h
+0
-0
storage_file.c
bin/varnishd/storage/storage_file.c
+1
-1
storage_malloc.c
bin/varnishd/storage/storage_malloc.c
+1
-1
storage_persistent.c
bin/varnishd/storage/storage_persistent.c
+2
-2
storage_persistent.h
bin/varnishd/storage/storage_persistent.h
+0
-0
storage_persistent_mgt.c
bin/varnishd/storage/storage_persistent_mgt.c
+2
-2
storage_persistent_silo.c
bin/varnishd/storage/storage_persistent_silo.c
+2
-2
storage_persistent_subr.c
bin/varnishd/storage/storage_persistent_subr.c
+2
-2
storage_synth.c
bin/varnishd/storage/storage_synth.c
+1
-1
storage_umem.c
bin/varnishd/storage/storage_umem.c
+1
-1
No files found.
bin/varnishd/Makefile.am
View file @
fe780278
...
...
@@ -64,16 +64,16 @@ varnishd_SOURCES = \
mgt_shmem.c
\
mgt_vcc.c
\
rfc2616.c
\
stevedore.c
\
stevedore_utils.c
\
storage_file.c
\
storage_malloc.c
\
storage_persistent.c
\
storage_persistent_mgt.c
\
storage_persistent_silo.c
\
storage_persistent_subr.c
\
storage_synth.c
\
storage_umem.c
\
st
orage/st
evedore.c
\
st
orage/st
evedore_utils.c
\
storage
/storage
_file.c
\
storage
/storage
_malloc.c
\
storage
/storage
_persistent.c
\
storage
/storage
_persistent_mgt.c
\
storage
/storage
_persistent_silo.c
\
storage
/storage
_persistent_subr.c
\
storage
/storage
_synth.c
\
storage
/storage
_umem.c
\
varnishd.c
\
vsm.c
...
...
@@ -88,8 +88,8 @@ noinst_HEADERS = \
heritage.h
\
mgt.h
\
mgt_cli.h
\
storage.h
\
storage_persistent.h
\
storage
/storage
.h
\
storage
/storage
_persistent.h
\
vparam.h
varnishd_CFLAGS
=
\
...
...
bin/varnishd/cache.h
View file @
fe780278
...
...
@@ -98,7 +98,6 @@ struct busyobj;
struct
cli
;
struct
cli_proto
;
struct
director
;
struct
exp
;
struct
iovec
;
struct
objcore
;
struct
object
;
...
...
@@ -106,7 +105,6 @@ struct objhead;
struct
pool
;
struct
sess
;
struct
sesspool
;
struct
storage
;
struct
vbc
;
struct
vef_priv
;
struct
vrt_backend
;
...
...
bin/varnishd/flint.sh
View file @
fe780278
...
...
@@ -16,6 +16,7 @@ flexelint \
-I
/usr/local/include
\
-DVARNISH_STATE_DIR
=
\"
foo
\"
\
*
.c
\
storage/
*
.c
\
../../lib/libvarnish/
*
.c
\
../../lib/libvarnishcompat/execinfo.c
\
../../lib/libvcl/
*
.c
\
...
...
bin/varnishd/stevedore.c
→
bin/varnishd/st
orage/st
evedore.c
View file @
fe780278
...
...
@@ -38,7 +38,7 @@
#include "cache.h"
#include "storage.h"
#include "storage
/storage
.h"
#include "vav.h"
#include "vcli_priv.h"
#include "vrt.h"
...
...
bin/varnishd/stevedore_utils.c
→
bin/varnishd/st
orage/st
evedore_utils.c
View file @
fe780278
...
...
@@ -51,7 +51,7 @@
#include "mgt.h"
#include "storage.h"
#include "storage
/storage
.h"
#include "vnum.h"
#ifndef O_LARGEFILE
...
...
bin/varnishd/storage.h
→
bin/varnishd/storage
/storage
.h
View file @
fe780278
File moved
bin/varnishd/storage_file.c
→
bin/varnishd/storage
/storage
_file.c
View file @
fe780278
...
...
@@ -37,7 +37,7 @@
#include <stdlib.h>
#include "cache.h"
#include "storage.h"
#include "storage
/storage
.h"
#include "vnum.h"
...
...
bin/varnishd/storage_malloc.c
→
bin/varnishd/storage
/storage
_malloc.c
View file @
fe780278
...
...
@@ -35,7 +35,7 @@
#include <stdlib.h>
#include "cache.h"
#include "storage.h"
#include "storage
/storage
.h"
#include "vnum.h"
...
...
bin/varnishd/storage_persistent.c
→
bin/varnishd/storage
/storage
_persistent.c
View file @
fe780278
...
...
@@ -44,7 +44,7 @@
#include <string.h>
#include "cache.h"
#include "storage.h"
#include "storage
/storage
.h"
#include "hash_slinger.h"
#include "vcli.h"
...
...
@@ -53,7 +53,7 @@
#include "vsha256.h"
#include "persistent.h"
#include "storage_persistent.h"
#include "storage
/storage
_persistent.h"
/*--------------------------------------------------------------------*/
...
...
bin/varnishd/storage_persistent.h
→
bin/varnishd/storage
/storage
_persistent.h
View file @
fe780278
File moved
bin/varnishd/storage_persistent_mgt.c
→
bin/varnishd/storage
/storage
_persistent_mgt.c
View file @
fe780278
...
...
@@ -42,12 +42,12 @@
#include <stdlib.h>
#include "cache.h"
#include "storage.h"
#include "storage
/storage
.h"
#include "vsha256.h"
#include "persistent.h"
#include "storage_persistent.h"
#include "storage
/storage
_persistent.h"
#ifndef MAP_NOCORE
#define MAP_NOCORE 0
/* XXX Linux */
...
...
bin/varnishd/storage_persistent_silo.c
→
bin/varnishd/storage
/storage
_persistent_silo.c
View file @
fe780278
...
...
@@ -38,14 +38,14 @@
#include <stdlib.h>
#include "cache.h"
#include "storage.h"
#include "storage
/storage
.h"
#include "hash_slinger.h"
#include "vsha256.h"
#include "vtim.h"
#include "persistent.h"
#include "storage_persistent.h"
#include "storage
/storage
_persistent.h"
/*--------------------------------------------------------------------
* Write the segmentlist back to the silo.
...
...
bin/varnishd/storage_persistent_subr.c
→
bin/varnishd/storage
/storage
_persistent_subr.c
View file @
fe780278
...
...
@@ -42,12 +42,12 @@
#include <stdlib.h>
#include "cache.h"
#include "storage.h"
#include "storage
/storage
.h"
#include "vsha256.h"
#include "persistent.h"
#include "storage_persistent.h"
#include "storage
/storage
_persistent.h"
/*--------------------------------------------------------------------
* SIGNATURE functions
...
...
bin/varnishd/storage_synth.c
→
bin/varnishd/storage
/storage
_synth.c
View file @
fe780278
...
...
@@ -33,7 +33,7 @@
#include <stdlib.h>
#include "cache.h"
#include "storage.h"
#include "storage
/storage
.h"
static
struct
lock
sms_mtx
;
...
...
bin/varnishd/storage_umem.c
→
bin/varnishd/storage
/storage
_umem.c
View file @
fe780278
...
...
@@ -40,7 +40,7 @@
#include <umem.h>
#include "cache.h"
#include "storage.h"
#include "storage
/storage
.h"
static
size_t
smu_max
=
SIZE_MAX
;
static
MTX
smu_mtx
;
...
...
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