Use leafsize and nodesize == pagesize for now

Chris Mason 2008-04-09 19:49:01 -04:00 committed by David Woodhouse
parent a37e1e7204
commit 4f9e7f0bae
1 changed files with 2 additions and 2 deletions

4
mkfs.c
View File

@ -273,9 +273,9 @@ int main(int ac, char **av)
int first_fd;
int ret;
int i;
u32 leafsize = 16 * 1024;
u32 leafsize = getpagesize();
u32 sectorsize = 4096;
u32 nodesize = 16 * 1024;
u32 nodesize = leafsize;
u32 stripesize = 4096;
u64 blocks[6];
int zero_end = 1;