Skip to content

Commit

Permalink
Btrfs: Fix a few functions that exit without stopping their transaction
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Mason <chris.mason@oracle.com>
  • Loading branch information
Josef Bacik authored and Chris Mason committed Sep 25, 2008
1 parent 7b12876 commit 8e8a1e3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion fs/btrfs/extent-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -3275,8 +3275,10 @@ int btrfs_shrink_extent_tree(struct btrfs_root *root, u64 shrink_start)
ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
if (ret > 0)
ret = -EIO;
if (ret < 0)
if (ret < 0) {
btrfs_end_transaction(trans, root);
goto out;
}

clear_extent_bits(&info->block_group_cache, key.objectid,
key.objectid + key.offset - 1,
Expand Down
6 changes: 4 additions & 2 deletions fs/btrfs/ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,10 @@ static noinline int create_subvol(struct btrfs_root *root, char *name,
leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
objectid, trans->transid, 0, 0,
0, 0);
if (IS_ERR(leaf))
return PTR_ERR(leaf);
if (IS_ERR(leaf)) {
ret = PTR_ERR(leaf);
goto fail;
}

btrfs_set_header_nritems(leaf, 0);
btrfs_set_header_level(leaf, 0);
Expand Down

0 comments on commit 8e8a1e3

Please sign in to comment.