Commit 5ee78ac7 authored by Chris Mason's avatar Chris Mason

Btrfs: Fix split_leaf to avoid incorrect double splits

Signed-off-by: default avatarChris Mason <chris.mason@oracle.com>
parent ff190c0c
...@@ -1865,7 +1865,11 @@ static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root ...@@ -1865,7 +1865,11 @@ static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
return ret; return ret;
} }
mid = slot; mid = slot;
double_split = 1; if (mid != nritems &&
leaf_space_used(l, mid, nritems - mid) +
space_needed > BTRFS_LEAF_DATA_SIZE(root)) {
double_split = 1;
}
} }
} }
nritems = nritems - mid; nritems = nritems - mid;
......
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