aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/suballoc.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ocfs2/suballoc.c')
-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,
1147 GLOBAL_BITMAP_SYSTEM_INODE, 1147 GLOBAL_BITMAP_SYSTEM_INODE,
1148 OCFS2_INVALID_SLOT, NULL, 1148 OCFS2_INVALID_SLOT, NULL,
1149 ALLOC_NEW_GROUP); 1149 ALLOC_NEW_GROUP);
1150 if (status < 0 && status != -ENOSPC) { 1150 if (status < 0 && status != -ENOSPC)
1151 mlog_errno(status); 1151 mlog_errno(status);
1152 goto bail;
1153 }
1154 1152
1155bail:
1156 return status; 1153 return status;
1157} 1154}
1158 1155