summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorGuozhonghua2017-11-16 02:31:55 +0100
committerLinus Torvalds2017-11-16 03:21:01 +0100
commit47ee9d89f04ccce34b6f076258d96d0ba3f5daa9 (patch)
tree63ca83a59da9fc7c384805d250bc7ac031b3e002 /fs
parentocfs2/dlm: get mle inuse only when it is initialized (diff)
downloadkernel-qcow2-linux-47ee9d89f04ccce34b6f076258d96d0ba3f5daa9.tar.gz
kernel-qcow2-linux-47ee9d89f04ccce34b6f076258d96d0ba3f5daa9.tar.xz
kernel-qcow2-linux-47ee9d89f04ccce34b6f076258d96d0ba3f5daa9.zip
ocfs2: remove unneeded goto in ocfs2_reserve_cluster_bitmap_bits()
Link: http://lkml.kernel.org/r/71604351584F6A4EBAE558C676F37CA4F3CDE3A9@H3CMLB14-EX.srv.huawei-3com.com Signed-off-by: guozhonghua <guozhonghua@h3c.com> Cc: Mark Fasheh <mfasheh@versity.com> Cc: Joel Becker <jlbec@evilplan.org> Cc: Junxiao Bi <junxiao.bi@oracle.com> Cc: Joseph Qi <jiangqi903@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/ocfs2/suballoc.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/ocfs2/suballoc.c b/fs/ocfs2/suballoc.c
index 71f22c8fbffd..9f0b95abc09f 100644
--- a/fs/ocfs2/suballoc.c
+++ b/fs/ocfs2/suballoc.c
@@ -1147,12 +1147,9 @@ int ocfs2_reserve_cluster_bitmap_bits(struct ocfs2_super *osb,
GLOBAL_BITMAP_SYSTEM_INODE,
OCFS2_INVALID_SLOT, NULL,
ALLOC_NEW_GROUP);
- if (status < 0 && status != -ENOSPC) {
+ if (status < 0 && status != -ENOSPC)
mlog_errno(status);
- goto bail;
- }
-bail:
return status;
}