summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/extent-tree.c
diff options
context:
space:
mode:
authorChris Mason2014-01-29 16:02:40 +0100
committerChris Mason2014-01-29 16:06:31 +0100
commitcf93da7bcf450cb4595055d491a0519cb39e68ed (patch)
tree7c4f187c51baf3125b1b47ad0ef2ad1ee9c0efb9 /fs/btrfs/extent-tree.c
parentBtrfs: setup inode location during btrfs_init_inode_locked (diff)
downloadkernel-qcow2-linux-cf93da7bcf450cb4595055d491a0519cb39e68ed.tar.gz
kernel-qcow2-linux-cf93da7bcf450cb4595055d491a0519cb39e68ed.tar.xz
kernel-qcow2-linux-cf93da7bcf450cb4595055d491a0519cb39e68ed.zip
Btrfs: fix spin_unlock in check_ref_cleanup
Our goto out should have gone a little farther. Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/extent-tree.c')
-rw-r--r--fs/btrfs/extent-tree.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
index 73b55d94b953..9c9ecc93ae2c 100644
--- a/fs/btrfs/extent-tree.c
+++ b/fs/btrfs/extent-tree.c
@@ -5893,7 +5893,7 @@ static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
spin_lock(&delayed_refs->lock);
head = btrfs_find_delayed_ref_head(trans, bytenr);
if (!head)
- goto out;
+ goto out_delayed_unlock;
spin_lock(&head->lock);
if (rb_first(&head->ref_root))
@@ -5942,6 +5942,8 @@ static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
return ret;
out:
spin_unlock(&head->lock);
+
+out_delayed_unlock:
spin_unlock(&delayed_refs->lock);
return 0;
}