@@ -1248,6 +1248,13 @@ raid_groups:
goto out;
}
+ ret = cleanup_temp_chunks(fs_info, &allocation, data_profile,
+ metadata_profile, metadata_profile);
+ if (ret < 0) {
+ error("failed to cleanup temporary chunks: %d", ret);
+ goto out;
+ }
+
if (source_dir_set) {
trans = btrfs_start_transaction(root, 1);
BUG_ON(IS_ERR(trans));
@@ -1311,12 +1318,6 @@ raid_groups:
}
}
}
- ret = cleanup_temp_chunks(fs_info, &allocation, data_profile,
- metadata_profile, metadata_profile);
- if (ret < 0) {
- error("failed to cleanup temporary chunks: %d", ret);
- goto out;
- }
if (verbose) {
char features_buf[64];
Cleanup those temporary chunks should be as soon as possible, and it should be especially before doing large tree operations, like filling rootdir. Signed-off-by: Qu Wenruo <wqu@suse.com> --- mkfs/main.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-)