dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Tao Ma 2008-08-21 14:14:27 +08:00 committed by Mark Fasheh
parent a1af7d15a1
commit 83cab5338f
1 changed files with 2 additions and 2 deletions

View File

@ -1310,7 +1310,7 @@ static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh,
NULL);
if (ret) {
mlog_errno(ret);
goto out;
goto out_commit;
}
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,
len, 0, NULL);
if (ret) {
mlog_errno(ret);
goto out;
goto out_commit;
}
}