summaryrefslogtreecommitdiff
path: root/mkfs.c
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2007-02-21 17:04:57 -0500
committerDavid Woodhouse <dwmw2@hera.kernel.org>2007-02-21 17:04:57 -0500
commit72777fbe2992c9e4aa157730e354d01cc26f0853 (patch)
treed758a6a3ede6203bcc54c26e1dbd661b4827f2bb /mkfs.c
parent828ba340281c283cb83d3168ca98a69131f78a98 (diff)
extent fixes
Diffstat (limited to 'mkfs.c')
-rw-r--r--mkfs.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/mkfs.c b/mkfs.c
index bab98c6d..584aba44 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -18,12 +18,13 @@ int mkfs(int fd)
struct extent_item extent_item;
int ret;
+ /* setup the super block area */
memset(info, 0, sizeof(info));
info[0].blocknr = 16;
info[0].objectid = 1;
info[0].tree_root = 17;
info[0].alloc_extent.blocknr = 0;
- info[0].alloc_extent.num_blocks = 20;
+ info[0].alloc_extent.num_blocks = 64;
/* 0-17 are used (inclusive) */
info[0].alloc_extent.num_used = 18;
@@ -31,12 +32,14 @@ int mkfs(int fd)
info[1].objectid = 2;
info[1].tree_root = 64;
info[1].alloc_extent.blocknr = 64;
- info[1].alloc_extent.num_blocks = 8;
+ info[1].alloc_extent.num_blocks = 64;
info[1].alloc_extent.num_used = 1;
ret = pwrite(fd, info, sizeof(info),
CTREE_SUPER_INFO_OFFSET(CTREE_BLOCKSIZE));
if (ret != sizeof(info))
return -1;
+
+ /* create leaves for the tree root and extent root */
memset(&empty_leaf, 0, sizeof(empty_leaf));
empty_leaf.header.parentid = 1;
empty_leaf.header.blocknr = 17;