diff options
| author | Jeff Mahoney <[email protected]> | 2017-12-04 18:11:45 +0000 |
|---|---|---|
| committer | David Sterba <[email protected]> | 2017-12-06 23:30:29 +0000 |
| commit | e19182c0fff451e3744c1107d98f072e7ca377a0 (patch) | |
| tree | f5bebc158558c68be9852748be356be134f6175d /fs/btrfs/extent-tree.c | |
| parent | btrfs: handle errors while updating refcounts in update_ref_for_cow (diff) | |
| download | kernel-e19182c0fff451e3744c1107d98f072e7ca377a0.tar.gz kernel-e19182c0fff451e3744c1107d98f072e7ca377a0.zip | |
btrfs: fix missing error return in btrfs_drop_snapshot
If btrfs_del_root fails in btrfs_drop_snapshot, we'll pick up the
error but then return 0 anyway due to mixing err and ret.
Fixes: 79787eaab4612 ("btrfs: replace many BUG_ONs with proper error handling")
Cc: <[email protected]> # v3.4+
Signed-off-by: Jeff Mahoney <[email protected]>
Reviewed-by: David Sterba <[email protected]>
Signed-off-by: David Sterba <[email protected]>
Diffstat (limited to 'fs/btrfs/extent-tree.c')
| -rw-r--r-- | fs/btrfs/extent-tree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index 784d41e95ed9..16e46ee3cd16 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c @@ -9220,6 +9220,7 @@ int btrfs_drop_snapshot(struct btrfs_root *root, ret = btrfs_del_root(trans, fs_info, &root->root_key); if (ret) { btrfs_abort_transaction(trans, ret); + err = ret; goto out_end_trans; } |
