diff options
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r-- | fs/btrfs/disk-io.c | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 7b845ff4af99..2936ca49b3b4 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c | |||
@@ -2354,12 +2354,17 @@ retry_root_backup: | |||
2354 | BTRFS_CSUM_TREE_OBJECTID, csum_root); | 2354 | BTRFS_CSUM_TREE_OBJECTID, csum_root); |
2355 | if (ret) | 2355 | if (ret) |
2356 | goto recovery_tree_root; | 2356 | goto recovery_tree_root; |
2357 | |||
2358 | csum_root->track_dirty = 1; | 2357 | csum_root->track_dirty = 1; |
2359 | 2358 | ||
2360 | fs_info->generation = generation; | 2359 | fs_info->generation = generation; |
2361 | fs_info->last_trans_committed = generation; | 2360 | fs_info->last_trans_committed = generation; |
2362 | 2361 | ||
2362 | ret = btrfs_recover_balance(fs_info); | ||
2363 | if (ret) { | ||
2364 | printk(KERN_WARNING "btrfs: failed to recover balance\n"); | ||
2365 | goto fail_block_groups; | ||
2366 | } | ||
2367 | |||
2363 | ret = btrfs_init_dev_stats(fs_info); | 2368 | ret = btrfs_init_dev_stats(fs_info); |
2364 | if (ret) { | 2369 | if (ret) { |
2365 | printk(KERN_ERR "btrfs: failed to init dev_stats: %d\n", | 2370 | printk(KERN_ERR "btrfs: failed to init dev_stats: %d\n", |
@@ -2485,20 +2490,23 @@ retry_root_backup: | |||
2485 | goto fail_trans_kthread; | 2490 | goto fail_trans_kthread; |
2486 | } | 2491 | } |
2487 | 2492 | ||
2488 | if (!(sb->s_flags & MS_RDONLY)) { | 2493 | if (sb->s_flags & MS_RDONLY) |
2489 | down_read(&fs_info->cleanup_work_sem); | 2494 | return 0; |
2490 | err = btrfs_orphan_cleanup(fs_info->fs_root); | ||
2491 | if (!err) | ||
2492 | err = btrfs_orphan_cleanup(fs_info->tree_root); | ||
2493 | up_read(&fs_info->cleanup_work_sem); | ||
2494 | 2495 | ||
2495 | if (!err) | 2496 | down_read(&fs_info->cleanup_work_sem); |
2496 | err = btrfs_recover_balance(fs_info->tree_root); | 2497 | if ((ret = btrfs_orphan_cleanup(fs_info->fs_root)) || |
2498 | (ret = btrfs_orphan_cleanup(fs_info->tree_root))) { | ||
2499 | up_read(&fs_info->cleanup_work_sem); | ||
2500 | close_ctree(tree_root); | ||
2501 | return ret; | ||
2502 | } | ||
2503 | up_read(&fs_info->cleanup_work_sem); | ||
2497 | 2504 | ||
2498 | if (err) { | 2505 | ret = btrfs_resume_balance_async(fs_info); |
2499 | close_ctree(tree_root); | 2506 | if (ret) { |
2500 | return err; | 2507 | printk(KERN_WARNING "btrfs: failed to resume balance\n"); |
2501 | } | 2508 | close_ctree(tree_root); |
2509 | return ret; | ||
2502 | } | 2510 | } |
2503 | 2511 | ||
2504 | return 0; | 2512 | return 0; |