diff options
-rw-r--r-- | fs/ocfs2/alloc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ocfs2/alloc.c b/fs/ocfs2/alloc.c index b8a9d87231b1..17e6bdde96c5 100644 --- a/fs/ocfs2/alloc.c +++ b/fs/ocfs2/alloc.c | |||
@@ -5655,7 +5655,7 @@ int ocfs2_remove_btree_range(struct inode *inode, | |||
5655 | &ref_tree, NULL); | 5655 | &ref_tree, NULL); |
5656 | if (ret) { | 5656 | if (ret) { |
5657 | mlog_errno(ret); | 5657 | mlog_errno(ret); |
5658 | goto out; | 5658 | goto bail; |
5659 | } | 5659 | } |
5660 | 5660 | ||
5661 | ret = ocfs2_prepare_refcount_change_for_del(inode, | 5661 | ret = ocfs2_prepare_refcount_change_for_del(inode, |
@@ -5666,7 +5666,7 @@ int ocfs2_remove_btree_range(struct inode *inode, | |||
5666 | &extra_blocks); | 5666 | &extra_blocks); |
5667 | if (ret < 0) { | 5667 | if (ret < 0) { |
5668 | mlog_errno(ret); | 5668 | mlog_errno(ret); |
5669 | goto out; | 5669 | goto bail; |
5670 | } | 5670 | } |
5671 | } | 5671 | } |
5672 | 5672 | ||
@@ -5674,7 +5674,7 @@ int ocfs2_remove_btree_range(struct inode *inode, | |||
5674 | extra_blocks); | 5674 | extra_blocks); |
5675 | if (ret) { | 5675 | if (ret) { |
5676 | mlog_errno(ret); | 5676 | mlog_errno(ret); |
5677 | return ret; | 5677 | goto bail; |
5678 | } | 5678 | } |
5679 | 5679 | ||
5680 | mutex_lock(&tl_inode->i_mutex); | 5680 | mutex_lock(&tl_inode->i_mutex); |
@@ -5734,7 +5734,7 @@ out_commit: | |||
5734 | ocfs2_commit_trans(osb, handle); | 5734 | ocfs2_commit_trans(osb, handle); |
5735 | out: | 5735 | out: |
5736 | mutex_unlock(&tl_inode->i_mutex); | 5736 | mutex_unlock(&tl_inode->i_mutex); |
5737 | 5737 | bail: | |
5738 | if (meta_ac) | 5738 | if (meta_ac) |
5739 | ocfs2_free_alloc_context(meta_ac); | 5739 | ocfs2_free_alloc_context(meta_ac); |
5740 | 5740 | ||