}
 }
 
-static noinline void switch_commit_roots(struct btrfs_transaction *trans)
+static noinline void switch_commit_roots(struct btrfs_trans_handle *trans)
 {
+       struct btrfs_transaction *cur_trans = trans->transaction;
        struct btrfs_fs_info *fs_info = trans->fs_info;
        struct btrfs_root *root, *tmp;
 
        down_write(&fs_info->commit_root_sem);
-       list_for_each_entry_safe(root, tmp, &trans->switch_commits,
+       list_for_each_entry_safe(root, tmp, &cur_trans->switch_commits,
                                 dirty_list) {
                list_del_init(&root->dirty_list);
                free_extent_buffer(root->commit_root);
        }
 
        /* We can free old roots now. */
-       spin_lock(&trans->dropped_roots_lock);
-       while (!list_empty(&trans->dropped_roots)) {
-               root = list_first_entry(&trans->dropped_roots,
+       spin_lock(&cur_trans->dropped_roots_lock);
+       while (!list_empty(&cur_trans->dropped_roots)) {
+               root = list_first_entry(&cur_trans->dropped_roots,
                                        struct btrfs_root, root_list);
                list_del_init(&root->root_list);
-               spin_unlock(&trans->dropped_roots_lock);
+               spin_unlock(&cur_trans->dropped_roots_lock);
+               btrfs_free_log(trans, root);
                btrfs_drop_and_free_fs_root(fs_info, root);
-               spin_lock(&trans->dropped_roots_lock);
+               spin_lock(&cur_trans->dropped_roots_lock);
        }
-       spin_unlock(&trans->dropped_roots_lock);
+       spin_unlock(&cur_trans->dropped_roots_lock);
        up_write(&fs_info->commit_root_sem);
 }
 
        ret = commit_cowonly_roots(trans);
        if (ret)
                goto out;
-       switch_commit_roots(trans->transaction);
+       switch_commit_roots(trans);
        ret = btrfs_write_and_wait_transaction(trans);
        if (ret)
                btrfs_handle_fs_error(fs_info, ret,
        list_add_tail(&fs_info->chunk_root->dirty_list,
                      &cur_trans->switch_commits);
 
-       switch_commit_roots(cur_trans);
+       switch_commit_roots(trans);
 
        ASSERT(list_empty(&cur_trans->dirty_bgs));
        ASSERT(list_empty(&cur_trans->io_bgs));