Skip to content

Commit

Permalink
Btrfs: fix extent owner/type setting on extent tree blocks
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Mason <chris.mason@oracle.com>
  • Loading branch information
Chris Mason authored and David Woodhouse committed Apr 23, 2007
1 parent 4d77567 commit 5d0c3e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fs/btrfs/extent-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ static int finish_current_insert(struct btrfs_trans_handle *trans, struct
ins.offset = 1;
ins.flags = 0;
btrfs_set_key_type(&ins, BTRFS_EXTENT_ITEM_KEY);
btrfs_set_extent_type(&extent_item, BTRFS_EXTENT_TREE);
btrfs_set_extent_owner(&extent_item, extent_root->root_key.objectid);

for (i = 0; i < extent_root->fs_info->current_insert.flags; i++) {
ins.objectid = extent_root->fs_info->current_insert.objectid +
Expand Down Expand Up @@ -356,7 +358,7 @@ static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);

level = btrfs_header_level(btrfs_buffer_header(root->node));
total_needed += (level + 1) * 3;
total_needed += (level + 2) * 3;
if (root->fs_info->last_insert.objectid == 0 && search_end == (u64)-1) {
struct btrfs_disk_key *last_key;
btrfs_init_path(path);
Expand Down

0 comments on commit 5d0c3e6

Please sign in to comment.