diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-03-17 14:29:23 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@hera.kernel.org> | 2007-03-17 14:29:23 -0400 |
commit | 4068947886f2d2a4c192941397bacd014a04b804 (patch) | |
tree | a51d646016f2400f80b4dccafda09f2cc9ced083 /fs | |
parent | e089f05c18ab36ed5fa7e2319052e03ab800d518 (diff) |
Btrfs: minor comments
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/btrfs/ctree.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index 17a3ff2f1828..32922643b5bc 100644 --- a/fs/btrfs/ctree.c +++ b/fs/btrfs/ctree.c | |||
@@ -294,6 +294,10 @@ static int balance_level(struct btrfs_trans_handle *trans, struct btrfs_root | |||
294 | parent_buf = path->nodes[level + 1]; | 294 | parent_buf = path->nodes[level + 1]; |
295 | pslot = path->slots[level + 1]; | 295 | pslot = path->slots[level + 1]; |
296 | 296 | ||
297 | /* | ||
298 | * deal with the case where there is only one pointer in the root | ||
299 | * by promoting the node below to a root | ||
300 | */ | ||
297 | if (!parent_buf) { | 301 | if (!parent_buf) { |
298 | struct btrfs_buffer *child; | 302 | struct btrfs_buffer *child; |
299 | u64 blocknr = mid_buf->blocknr; | 303 | u64 blocknr = mid_buf->blocknr; |
@@ -1043,6 +1047,7 @@ static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root | |||
1043 | int ret; | 1047 | int ret; |
1044 | int wret; | 1048 | int wret; |
1045 | 1049 | ||
1050 | /* first try to make some room by pushing left and right */ | ||
1046 | wret = push_leaf_left(trans, root, path, data_size); | 1051 | wret = push_leaf_left(trans, root, path, data_size); |
1047 | if (wret < 0) | 1052 | if (wret < 0) |
1048 | return wret; | 1053 | return wret; |