aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Ma <tao.ma@oracle.com>2008-08-21 02:14:27 -0400
committerMark Fasheh <mfasheh@suse.com>2008-08-22 14:09:02 -0400
commit83cab5338fa8c74f979223698c8d4cc88f2ab68e (patch)
tree3acf8331abe32db8204ba0aba7a708cb1c5a5912
parenta1af7d15a18d1e375b0a6fee93789a0bbfe088b4 (diff)
ocfs2: Jump to correct label in ocfs2_expand_inline_dir()
When we fail to insert extent in ocfs2_expand_inline_dir(), we should go to out_commit, not out. Signed-off-by: Tao Ma <tao.ma@oracle.com> Signed-off-by: Mark Fasheh <mfasheh@suse.com>
-rw-r--r--fs/ocfs2/dir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ocfs2/dir.c b/fs/ocfs2/dir.c
index 8a1875848080..8e9c4a47d819 100644
--- a/fs/ocfs2/dir.c
+++ b/fs/ocfs2/dir.c
@@ -1310,7 +1310,7 @@ static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh,
1310 NULL); 1310 NULL);
1311 if (ret) { 1311 if (ret) {
1312 mlog_errno(ret); 1312 mlog_errno(ret);
1313 goto out; 1313 goto out_commit;
1314 } 1314 }
1315 1315
1316 ret = ocfs2_journal_dirty(handle, di_bh); 1316 ret = ocfs2_journal_dirty(handle, di_bh);
@@ -1336,7 +1336,7 @@ static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh,
1336 len, 0, NULL); 1336 len, 0, NULL);
1337 if (ret) { 1337 if (ret) {
1338 mlog_errno(ret); 1338 mlog_errno(ret);
1339 goto out; 1339 goto out_commit;
1340 } 1340 }
1341 } 1341 }
1342 1342