diff options
Diffstat (limited to 'fs/btrfs/super.c')
| -rw-r--r-- | fs/btrfs/super.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 38d91c7e8db..574285c8cbd 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -694,11 +694,11 @@ static int btrfs_remount(struct super_block *sb, int *flags, char *data)  		if (btrfs_super_log_root(&root->fs_info->super_copy) != 0)  			return -EINVAL; -		/* recover relocation */ -		ret = btrfs_recover_relocation(root); +		ret = btrfs_cleanup_fs_roots(root->fs_info);  		WARN_ON(ret); -		ret = btrfs_cleanup_fs_roots(root->fs_info); +		/* recover relocation */ +		ret = btrfs_recover_relocation(root);  		WARN_ON(ret);  		sb->s_flags &= ~MS_RDONLY;  |