From: Dan Carpenter Date: Sat, 29 May 2010 09:46:47 +0000 (+0000) Subject: Btrfs: unwind after btrfs_start_transaction() errors X-Git-Tag: v2.6.35-rc3~3^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d327099a23e3d0c8ec09137e9b4b115449d4eb29;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git Btrfs: unwind after btrfs_start_transaction() errors This was added by a22285a6a3: "Btrfs: Integrate metadata reservation with start_transaction". If we goto out here then we skip all the unwinding and there are locks still held etc. Signed-off-by: Dan Carpenter Signed-off-by: Chris Mason --- diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index 4cdb98c..9f9a1d9 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -1280,7 +1280,7 @@ static noinline int btrfs_ioctl_snap_destroy(struct file *file, trans = btrfs_start_transaction(root, 0); if (IS_ERR(trans)) { err = PTR_ERR(trans); - goto out; + goto out_up_write; } trans->block_rsv = &root->fs_info->global_block_rsv;