mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-16 05:50:19 +00:00
Btrfs: Copy correct tree when inserting into slot 0
Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
parent
b3236e68bf
commit
5a01a2e3a9
@ -2443,13 +2443,16 @@ int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
|
|||||||
btrfs_mark_buffer_dirty(leaf);
|
btrfs_mark_buffer_dirty(leaf);
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
if (slot == 0)
|
if (slot == 0) {
|
||||||
|
btrfs_cpu_key_to_disk(&disk_key, cpu_key);
|
||||||
ret = fixup_low_keys(trans, root, path, &disk_key, 1);
|
ret = fixup_low_keys(trans, root, path, &disk_key, 1);
|
||||||
|
}
|
||||||
|
|
||||||
if (btrfs_leaf_free_space(root, leaf) < 0) {
|
if (btrfs_leaf_free_space(root, leaf) < 0) {
|
||||||
btrfs_print_leaf(root, leaf);
|
btrfs_print_leaf(root, leaf);
|
||||||
BUG();
|
BUG();
|
||||||
}
|
}
|
||||||
|
|
||||||
out:
|
out:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user