summaryrefslogtreecommitdiff
path: root/rsync.h
diff options
context:
space:
mode:
authorJ.W. Schultz <jw@samba.org>2004-02-10 03:23:37 +0000
committerJ.W. Schultz <jw@samba.org>2004-02-10 03:23:37 +0000
commit9935066b704bcf2e6e48dac85cb1b4047d8f439d (patch)
treed34306ebea0ffb106ccb7d37318feb95a47605db /rsync.h
parent6c2e5b56e49b494b33b3b63fc797f83d4c05a203 (diff)
downloadrsync-9935066b704bcf2e6e48dac85cb1b4047d8f439d.tar.gz
Make idev, hlink and file_struct + strings use allocation
pools.
Diffstat (limited to 'rsync.h')
-rw-r--r--rsync.h20
1 files changed, 18 insertions, 2 deletions
diff --git a/rsync.h b/rsync.h
index aa22cfe9..37a5d531 100644
--- a/rsync.h
+++ b/rsync.h
@@ -112,8 +112,6 @@
#define FULL_FLUSH 1
#define NORMAL_FLUSH 0
-#define CLEAR_STRUCT 0
-#define FREE_STRUCT 1
/* Log-message categories. FLOG is only used on the daemon side to
* output messages to the log file. */
@@ -254,6 +252,7 @@ enum msgcode {
#include <assert.h>
+#include "lib/pool_alloc.h"
#define BOOL int
@@ -434,10 +433,27 @@ struct file_struct {
*/
#define FLIST_START (32 * 1024)
#define FLIST_LINEAR (FLIST_START * 512)
+/*
+ * Extent size for allocation pools A minimum size of 128KB
+ * is needed to mmap them so that freeing will release the
+ * space to the OS.
+ *
+ * Larger sizes reduce leftover fragments and speed free calls
+ * (when they happen) Smaller sizes increase the chance of
+ * freed allocations freeing whole extents.
+ */
+
+#define FILE_EXTENT (256 * 1024)
+#define HLINK_EXTENT (128 * 1024)
+
+#define WITH_HLINK 1
+#define WITHOUT_HLINK 0
struct file_list {
int count;
int malloced;
+ alloc_pool_t file_pool;
+ alloc_pool_t hlink_pool;
struct file_struct **files;
};