Reorder extent back refs to differentiate file data from btree blocks

master
Chris Mason 2007-12-13 11:12:45 -05:00 committed by David Woodhouse
parent 140d96a562
commit 29bf1724b1
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ struct btrfs_trans_handle;
#define BTRFS_EXTENT_TREE_OBJECTID 2ULL
#define BTRFS_FS_TREE_OBJECTID 3ULL
#define BTRFS_ROOT_TREE_DIR_OBJECTID 4ULL
#define BTRFS_FIRST_FREE_OBJECTID 5ULL
#define BTRFS_FIRST_FREE_OBJECTID 256ULL
/*
* we can actually store much bigger names, but lets not confuse the rest

4
mkfs.c
View File

@ -353,9 +353,9 @@ int main(int ac, char **av)
struct stat st;
int ret;
int i;
u32 leafsize = 8 * 1024;
u32 leafsize = 16 * 1024;
u32 sectorsize = 4096;
u32 nodesize = 8 * 1024;
u32 nodesize = 16 * 1024;
u32 stripesize = 4096;
char *buf = malloc(sectorsize);
char *realpath_name;