Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 128492
b: refs/heads/master
c: 0f1ebbd
h: refs/heads/master
v: v3
  • Loading branch information
Chris Mason committed Sep 25, 2008
1 parent ed7484b commit 743a794
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 19c00ddcc31ad4bdfb86b57085e06d6135b9b1d7
refs/heads/master: 0f1ebbd159baade0417f8f62f0cd6810cc950832
4 changes: 1 addition & 3 deletions trunk/fs/btrfs/ctree.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,11 +217,9 @@ int btrfs_realloc_node(struct btrfs_trans_handle *trans,
root->fs_info->generation);
WARN_ON(1);
}
if (btrfs_buffer_defrag_done(parent))
return 0;
parent_level = btrfs_header_level(parent);

parent_nritems = btrfs_header_nritems(parent);
parent_level = btrfs_header_level(parent);
blocksize = btrfs_level_size(root, parent_level - 1);

start_slot = 0;
Expand Down
23 changes: 22 additions & 1 deletion trunk/fs/btrfs/tree-defrag.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ static int defrag_walk_down(struct btrfs_trans_handle *trans,
WARN_ON(*level >= BTRFS_MAX_LEVEL);

btrfs_clear_buffer_defrag(path->nodes[*level]);
btrfs_clear_buffer_defrag_done(path->nodes[*level]);

free_extent_buffer(path->nodes[*level]);
path->nodes[*level] = NULL;
Expand Down Expand Up @@ -148,6 +147,26 @@ static int defrag_walk_up(struct btrfs_trans_handle *trans,
root->defrag_level = i;
return 0;
} else {
if (*level > 1 && path->nodes[*level] != root->node) {
struct extent_buffer *next;
u64 last;
int ret;
ret = btrfs_cow_block(trans, root,
path->nodes[*level],
path->nodes[*level + 1],
path->slots[*level + 1],
&next);
BUG_ON(ret);
path->nodes[*level] = next;
last = next->start;
ret = btrfs_realloc_node(trans, root, next,
cache_only, &last);
BUG_ON(ret);

if (root == root->fs_info->extent_root)
btrfs_extent_post_op(trans, root);
}

btrfs_clear_buffer_defrag(path->nodes[*level]);
btrfs_clear_buffer_defrag_done(path->nodes[*level]);
free_extent_buffer(path->nodes[*level]);
Expand Down Expand Up @@ -183,9 +202,11 @@ int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,

level = btrfs_header_level(root->node);
orig_level = level;

if (level == 0) {
goto out;
}

if (root->defrag_progress.objectid == 0) {
extent_buffer_get(root->node);
ret = btrfs_cow_block(trans, root, root->node, NULL, 0, &tmp);
Expand Down

0 comments on commit 743a794

Please sign in to comment.