提交 068fe39f 编写于 作者: C Chris Mason

Btrfs: Add checks for last byte in disk to allocator grouping

Signed-off-by: NChris Mason <chris.mason@oracle.com>
上级 dacb473a
...@@ -1611,8 +1611,13 @@ static int noinline find_free_extent(struct btrfs_trans_handle *trans, ...@@ -1611,8 +1611,13 @@ static int noinline find_free_extent(struct btrfs_trans_handle *trans,
} }
ins->offset = num_bytes; ins->offset = num_bytes;
btrfs_free_path(path); btrfs_free_path(path);
if (last_ptr) if (last_ptr) {
*last_ptr = ins->objectid + ins->offset; *last_ptr = ins->objectid + ins->offset;
if (*last_ptr ==
btrfs_super_total_bytes(&root->fs_info->super_copy)) {
*last_ptr = 0;
}
}
return 0; return 0;
new_group: new_group:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册