diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-09-03 18:26:47 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-09-05 20:02:35 +0300 |
commit | a5cb562d6977d9d7989c346b7b153cef31ec0228 (patch) | |
tree | c2e20c7eb8d83bafd29a335bdd132959b74c114f /fs | |
parent | f171d4d769c8ccac6675892960e37f6485837fae (diff) | |
download | kernel_goldelico_gta04-a5cb562d6977d9d7989c346b7b153cef31ec0228.zip kernel_goldelico_gta04-a5cb562d6977d9d7989c346b7b153cef31ec0228.tar.gz kernel_goldelico_gta04-a5cb562d6977d9d7989c346b7b153cef31ec0228.tar.bz2 |
UBIFS: make minimum fanout 3
UBIFS does not really work correctly when fanout is 2,
because of the way we manage the indexing tree. It may
just become a list and UBIFS screws up.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ubifs/ubifs-media.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/ubifs-media.h b/fs/ubifs/ubifs-media.h index bd2121f..a9ecbd9 100644 --- a/fs/ubifs/ubifs-media.h +++ b/fs/ubifs/ubifs-media.h @@ -87,7 +87,7 @@ #define UBIFS_SK_LEN 8 /* Minimum index tree fanout */ -#define UBIFS_MIN_FANOUT 2 +#define UBIFS_MIN_FANOUT 3 /* Maximum number of levels in UBIFS indexing B-tree */ #define UBIFS_MAX_LEVELS 512 |