Commit 40689478 authored by Chris Mason's avatar Chris Mason Committed by David Woodhouse

Btrfs: minor comments

Signed-off-by: default avatarChris Mason <chris.mason@oracle.com>
parent e089f05c
...@@ -294,6 +294,10 @@ static int balance_level(struct btrfs_trans_handle *trans, struct btrfs_root ...@@ -294,6 +294,10 @@ static int balance_level(struct btrfs_trans_handle *trans, struct btrfs_root
parent_buf = path->nodes[level + 1]; parent_buf = path->nodes[level + 1];
pslot = path->slots[level + 1]; pslot = path->slots[level + 1];
/*
* deal with the case where there is only one pointer in the root
* by promoting the node below to a root
*/
if (!parent_buf) { if (!parent_buf) {
struct btrfs_buffer *child; struct btrfs_buffer *child;
u64 blocknr = mid_buf->blocknr; u64 blocknr = mid_buf->blocknr;
...@@ -1043,6 +1047,7 @@ static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root ...@@ -1043,6 +1047,7 @@ static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
int ret; int ret;
int wret; int wret;
/* first try to make some room by pushing left and right */
wret = push_leaf_left(trans, root, path, data_size); wret = push_leaf_left(trans, root, path, data_size);
if (wret < 0) if (wret < 0)
return wret; return wret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment