aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/fs.h')
-rw-r--r--src/fs/fs.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/fs/fs.h b/src/fs/fs.h
index 3277ea340..aff90d4fe 100644
--- a/src/fs/fs.h
+++ b/src/fs/fs.h
@@ -42,6 +42,13 @@
42#define MAX_MIGRATION_QUEUE 32 42#define MAX_MIGRATION_QUEUE 32
43 43
44/** 44/**
45 * Ratio for moving average delay calculation. The previous
46 * average goes in with a factor of (n-1) into the calculation.
47 * Must be > 0.
48 */
49#define RUNAVG_DELAY_N 16
50
51/**
45 * Size of the individual blocks used for file-sharing. 52 * Size of the individual blocks used for file-sharing.
46 */ 53 */
47#define DBLOCK_SIZE (32*1024) 54#define DBLOCK_SIZE (32*1024)