struct btrfs_root *root);
 int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr);
 int btrfs_free_block_groups(struct btrfs_fs_info *info);
-int btrfs_read_block_groups(struct btrfs_root *root);
+int btrfs_read_block_groups(struct btrfs_fs_info *info);
 int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr);
 int btrfs_make_block_group(struct btrfs_trans_handle *trans,
                           struct btrfs_root *root, u64 bytes_used,
 /* file-item.c */
 struct btrfs_dio_private;
 int btrfs_del_csums(struct btrfs_trans_handle *trans,
-                   struct btrfs_root *root, u64 bytenr, u64 len);
+                   struct btrfs_fs_info *fs_info, u64 bytenr, u64 len);
 int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
                          struct bio *bio, u32 *dst);
 int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode,
 
        read_extent_buffer(chunk_root->node, fs_info->chunk_tree_uuid,
           btrfs_header_chunk_tree_uuid(chunk_root->node), BTRFS_UUID_SIZE);
 
-       ret = btrfs_read_chunk_tree(chunk_root);
+       ret = btrfs_read_chunk_tree(fs_info);
        if (ret) {
                btrfs_err(fs_info, "failed to read chunk tree: %d", ret);
                goto fail_tree_roots;
                goto fail_sysfs;
        }
 
-       ret = btrfs_read_block_groups(fs_info->extent_root);
+       ret = btrfs_read_block_groups(fs_info);
        if (ret) {
                btrfs_err(fs_info, "failed to read block groups: %d", ret);
                goto fail_sysfs;
 
                        btrfs_pin_extent(root, node->bytenr,
                                         node->num_bytes, 1);
                        if (head->is_data) {
-                               ret = btrfs_del_csums(trans, root,
+                               ret = btrfs_del_csums(trans, root->fs_info,
                                                      node->bytenr,
                                                      node->num_bytes);
                        }
 
                if (cache->disk_cache_state == BTRFS_DC_SETUP) {
                        cache->io_ctl.inode = NULL;
-                       ret = btrfs_write_out_cache(root, trans, cache, path);
+                       ret = btrfs_write_out_cache(root->fs_info, trans,
+                                                   cache, path);
                        if (ret == 0 && cache->io_ctl.inode) {
                                num_started++;
                                should_put = 0;
 
                if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
                        cache->io_ctl.inode = NULL;
-                       ret = btrfs_write_out_cache(root, trans, cache, path);
+                       ret = btrfs_write_out_cache(root->fs_info, trans,
+                                                   cache, path);
                        if (ret == 0 && cache->io_ctl.inode) {
                                num_started++;
                                should_put = 0;
                btrfs_release_path(path);
 
                if (is_data) {
-                       ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
+                       ret = btrfs_del_csums(trans, info, bytenr, num_bytes);
                        if (ret) {
                                btrfs_abort_transaction(trans, ret);
                                goto out;
        return cache;
 }
 
-int btrfs_read_block_groups(struct btrfs_root *root)
+int btrfs_read_block_groups(struct btrfs_fs_info *info)
 {
+       struct btrfs_root *root = info->extent_root;
        struct btrfs_path *path;
        int ret;
        struct btrfs_block_group_cache *cache;
-       struct btrfs_fs_info *info = root->fs_info;
        struct btrfs_space_info *space_info;
        struct btrfs_key key;
        struct btrfs_key found_key;
        feature = btrfs_super_incompat_flags(info->super_copy);
        mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
 
-       root = info->extent_root;
        key.objectid = 0;
        key.offset = 0;
        key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
                 * Btrfs_remove_chunk will abort the transaction if things go
                 * horribly wrong.
                 */
-               ret = btrfs_remove_chunk(trans, root,
+               ret = btrfs_remove_chunk(trans, fs_info,
                                         block_group->key.objectid);
 
                if (ret) {
 
  * range of bytes.
  */
 int btrfs_del_csums(struct btrfs_trans_handle *trans,
-                   struct btrfs_root *root, u64 bytenr, u64 len)
+                   struct btrfs_fs_info *fs_info, u64 bytenr, u64 len)
 {
+       struct btrfs_root *root = fs_info->csum_root;
        struct btrfs_path *path;
        struct btrfs_key key;
        u64 end_byte = bytenr + len;
        u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
        int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
 
-       root = root->fs_info->csum_root;
-
        path = btrfs_alloc_path();
        if (!path)
                return -ENOMEM;
 
        goto out;
 }
 
-int btrfs_write_out_cache(struct btrfs_root *root,
+int btrfs_write_out_cache(struct btrfs_fs_info *fs_info,
                          struct btrfs_trans_handle *trans,
                          struct btrfs_block_group_cache *block_group,
                          struct btrfs_path *path)
 {
+       struct btrfs_root *root = fs_info->tree_root;
        struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
        struct inode *inode;
        int ret = 0;
 
-       root = root->fs_info->tree_root;
-
        spin_lock(&block_group->lock);
        if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
                spin_unlock(&block_group->lock);
 
                        struct btrfs_block_group_cache *block_group,
                        struct btrfs_io_ctl *io_ctl,
                        struct btrfs_path *path, u64 offset);
-int btrfs_write_out_cache(struct btrfs_root *root,
+int btrfs_write_out_cache(struct btrfs_fs_info *fs_info,
                          struct btrfs_trans_handle *trans,
                          struct btrfs_block_group_cache *block_group,
                          struct btrfs_path *path);
 
  * update all the cowonly tree roots on disk
  */
 static noinline int commit_fs_roots(struct btrfs_trans_handle *trans,
-                                   struct btrfs_root *root)
+                                   struct btrfs_fs_info *fs_info)
 {
        struct btrfs_root *gang[8];
-       struct btrfs_fs_info *fs_info = root->fs_info;
        int i;
        int ret;
        int err = 0;
                if (ret == 0)
                        break;
                for (i = 0; i < ret; i++) {
-                       root = gang[i];
+                       struct btrfs_root *root = gang[i];
                        radix_tree_tag_clear(&fs_info->fs_roots_radix,
                                        (unsigned long)root->root_key.objectid,
                                        BTRFS_ROOT_TRANS_TAG);
         */
        mutex_lock(&fs_info->tree_log_mutex);
 
-       ret = commit_fs_roots(trans, src);
+       ret = commit_fs_roots(trans, fs_info);
        if (ret)
                goto out;
        ret = btrfs_qgroup_prepare_account_extents(trans, fs_info);
         */
        mutex_lock(&root->fs_info->tree_log_mutex);
 
-       ret = commit_fs_roots(trans, root);
+       ret = commit_fs_roots(trans, root->fs_info);
        if (ret) {
                mutex_unlock(&root->fs_info->tree_log_mutex);
                mutex_unlock(&root->fs_info->reloc_mutex);
 
                                                list);
                                if (!ret)
                                        ret = btrfs_del_csums(trans,
-                                                     root->fs_info->csum_root,
-                                                     sums->bytenr,
-                                                     sums->len);
+                                                             root->fs_info,
+                                                             sums->bytenr,
+                                                             sums->len);
                                if (!ret)
                                        ret = btrfs_csum_file_blocks(trans,
                                                root->fs_info->csum_root,
 
  * the btrfs_device struct should be fully filled in
  */
 static int btrfs_add_device(struct btrfs_trans_handle *trans,
-                           struct btrfs_root *root,
+                           struct btrfs_fs_info *fs_info,
                            struct btrfs_device *device)
 {
+       struct btrfs_root *root = fs_info->chunk_root;
        int ret;
        struct btrfs_path *path;
        struct btrfs_dev_item *dev_item;
        struct btrfs_key key;
        unsigned long ptr;
 
-       root = root->fs_info->chunk_root;
-
        path = btrfs_alloc_path();
        if (!path)
                return -ENOMEM;
        filp_close(filp, NULL);
 }
 
-static int btrfs_rm_dev_item(struct btrfs_root *root,
+static int btrfs_rm_dev_item(struct btrfs_fs_info *fs_info,
                             struct btrfs_device *device)
 {
+       struct btrfs_root *root = fs_info->chunk_root;
        int ret;
        struct btrfs_path *path;
        struct btrfs_key key;
        struct btrfs_trans_handle *trans;
 
-       root = root->fs_info->chunk_root;
-
        path = btrfs_alloc_path();
        if (!path)
                return -ENOMEM;
         * counter although write_all_supers() is not locked out. This
         * could give a filesystem state which requires a degraded mount.
         */
-       ret = btrfs_rm_dev_item(root->fs_info->chunk_root, device);
+       ret = btrfs_rm_dev_item(root->fs_info, device);
        if (ret)
                goto error_undo;
 
  * Store the expected generation for seed devices in device items.
  */
 static int btrfs_finish_sprout(struct btrfs_trans_handle *trans,
-                              struct btrfs_root *root)
+                              struct btrfs_fs_info *fs_info)
 {
+       struct btrfs_root *root = fs_info->chunk_root;
        struct btrfs_path *path;
        struct extent_buffer *leaf;
        struct btrfs_dev_item *dev_item;
        if (!path)
                return -ENOMEM;
 
-       root = root->fs_info->chunk_root;
        key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
        key.offset = 0;
        key.type = BTRFS_DEV_ITEM_KEY;
                }
        }
 
-       ret = btrfs_add_device(trans, root, device);
+       ret = btrfs_add_device(trans, root->fs_info, device);
        if (ret) {
                btrfs_abort_transaction(trans, ret);
                goto error_trans;
        if (seeding_dev) {
                char fsid_buf[BTRFS_UUID_UNPARSED_SIZE];
 
-               ret = btrfs_finish_sprout(trans, root);
+               ret = btrfs_finish_sprout(trans, root->fs_info);
                if (ret) {
                        btrfs_abort_transaction(trans, ret);
                        goto error_trans;
 }
 
 static int btrfs_free_chunk(struct btrfs_trans_handle *trans,
-                           struct btrfs_root *root, u64 chunk_objectid,
+                           struct btrfs_fs_info *fs_info, u64 chunk_objectid,
                            u64 chunk_offset)
 {
+       struct btrfs_root *root = fs_info->chunk_root;
        int ret;
        struct btrfs_path *path;
        struct btrfs_key key;
 
-       root = root->fs_info->chunk_root;
        path = btrfs_alloc_path();
        if (!path)
                return -ENOMEM;
 }
 
 int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
-                      struct btrfs_root *root, u64 chunk_offset)
+                      struct btrfs_fs_info *fs_info, u64 chunk_offset)
 {
+       struct btrfs_root *root = fs_info->chunk_root;
        struct extent_map_tree *em_tree;
        struct extent_map *em;
        struct btrfs_root *extent_root = root->fs_info->extent_root;
        int i, ret = 0;
        struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
 
-       /* Just in case */
-       root = root->fs_info->chunk_root;
-       em_tree = &root->fs_info->mapping_tree.map_tree;
+       em_tree = &fs_info->mapping_tree.map_tree;
 
        read_lock(&em_tree->lock);
        em = lookup_extent_mapping(em_tree, chunk_offset, 1);
        }
        mutex_unlock(&fs_devices->device_list_mutex);
 
-       ret = btrfs_free_chunk(trans, root, chunk_objectid, chunk_offset);
+       ret = btrfs_free_chunk(trans, root->fs_info, chunk_objectid,
+                              chunk_offset);
        if (ret) {
                btrfs_abort_transaction(trans, ret);
                goto out;
        return ret;
 }
 
-static int btrfs_relocate_chunk(struct btrfs_root *root, u64 chunk_offset)
+static int btrfs_relocate_chunk(struct btrfs_fs_info *fs_info, u64 chunk_offset)
 {
-       struct btrfs_root *extent_root;
+       struct btrfs_root *root = fs_info->chunk_root;
+       struct btrfs_root *extent_root = fs_info->extent_root;
        struct btrfs_trans_handle *trans;
        int ret;
 
-       root = root->fs_info->chunk_root;
-       extent_root = root->fs_info->extent_root;
-
        /*
         * Prevent races with automatic removal of unused block groups.
         * After we relocate and before we remove the chunk with offset
         * step two, delete the device extents and the
         * chunk tree entries
         */
-       ret = btrfs_remove_chunk(trans, root, chunk_offset);
+       ret = btrfs_remove_chunk(trans, fs_info, chunk_offset);
        btrfs_end_transaction(trans, extent_root);
        return ret;
 }
                btrfs_release_path(path);
 
                if (chunk_type & BTRFS_BLOCK_GROUP_SYSTEM) {
-                       ret = btrfs_relocate_chunk(chunk_root,
+                       ret = btrfs_relocate_chunk(root->fs_info,
                                                   found_key.offset);
                        if (ret == -ENOSPC)
                                failed++;
                        chunk_reserved = 1;
                }
 
-               ret = btrfs_relocate_chunk(chunk_root,
-                                          found_key.offset);
+               ret = btrfs_relocate_chunk(fs_info, found_key.offset);
                mutex_unlock(&fs_info->delete_unused_bgs_mutex);
                if (ret && ret != -ENOSPC)
                        goto error;
                chunk_offset = btrfs_dev_extent_chunk_offset(l, dev_extent);
                btrfs_release_path(path);
 
-               ret = btrfs_relocate_chunk(root, chunk_offset);
+               ret = btrfs_relocate_chunk(root->fs_info, chunk_offset);
                mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
                if (ret && ret != -ENOSPC)
                        goto done;
        return -EIO;
 }
 
-int btrfs_read_chunk_tree(struct btrfs_root *root)
+int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info)
 {
+       struct btrfs_root *root = fs_info->chunk_root;
        struct btrfs_path *path;
        struct extent_buffer *leaf;
        struct btrfs_key key;
        int slot;
        u64 total_dev = 0;
 
-       root = root->fs_info->chunk_root;
-
        path = btrfs_alloc_path();
        if (!path)
                return -ENOMEM;
 
                     u64 chunk_start, u64 physical, u64 devid,
                     u64 **logical, int *naddrs, int *stripe_len);
 int btrfs_read_sys_array(struct btrfs_root *root);
-int btrfs_read_chunk_tree(struct btrfs_root *root);
+int btrfs_read_chunk_tree(struct btrfs_fs_info *fs_info);
 int btrfs_alloc_chunk(struct btrfs_trans_handle *trans,
                      struct btrfs_root *extent_root, u64 type);
 void btrfs_mapping_init(struct btrfs_mapping_tree *tree);
                                struct btrfs_root *extent_root,
                                u64 chunk_offset, u64 chunk_size);
 int btrfs_remove_chunk(struct btrfs_trans_handle *trans,
-                      struct btrfs_root *root, u64 chunk_offset);
+                      struct btrfs_fs_info *fs_info, u64 chunk_offset);
 
 static inline int btrfs_dev_stats_dirty(struct btrfs_device *dev)
 {