diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-10-22 14:23:00 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-10-22 15:31:12 +0300 |
commit | 06ff08f391e0297c4fcde63b801e6992d2238ae2 (patch) | |
tree | 9ed853db391876a887962c1d75b1c13786ce85bf /mkfs.ubifs/mkfs.ubifs.c | |
parent | d217a4e65084b0ef807e5749513bff16ddfb0b58 (diff) |
Define the worst case compression constant
It will be used in the next patches.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'mkfs.ubifs/mkfs.ubifs.c')
-rw-r--r-- | mkfs.ubifs/mkfs.ubifs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mkfs.ubifs/mkfs.ubifs.c b/mkfs.ubifs/mkfs.ubifs.c index 65ebc8c..18ede49 100644 --- a/mkfs.ubifs/mkfs.ubifs.c +++ b/mkfs.ubifs/mkfs.ubifs.c @@ -28,7 +28,8 @@ #define HASH_TABLE_SIZE 10099 /* The node buffer must allow for worst case compression */ -#define NODE_BUFFER_SIZE (UBIFS_DATA_NODE_SZ + UBIFS_BLOCK_SIZE * 4) +#define NODE_BUFFER_SIZE (UBIFS_DATA_NODE_SZ + \ + UBIFS_BLOCK_SIZE * WORST_COMPR_FACTOR) /* Default time granularity in nanoseconds */ #define DEFAULT_TIME_GRAN 1000000000 |