[PATCH] ocfs2: remove goto statement in ocfs2_dx_dir_link_trailer()

From: Daeseok Youn
Date: Fri Jan 30 2015 - 22:09:08 EST


It is nothing to do in 'out' label, so just return 'ret'
variable.

Signed-off-by: Daeseok Youn <daeseok.youn@xxxxxxxxx>
---
fs/ocfs2/dir.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/fs/ocfs2/dir.c b/fs/ocfs2/dir.c
index 319e786..e6e5de8 100644
--- a/fs/ocfs2/dir.c
+++ b/fs/ocfs2/dir.c
@@ -179,7 +179,7 @@ static int ocfs2_dx_dir_link_trailer(struct inode *dir, handle_t *handle,
OCFS2_JOURNAL_ACCESS_WRITE);
if (ret) {
mlog_errno(ret);
- goto out;
+ return ret;
}
trailer = ocfs2_trailer_from_bh(dirdata_bh, dir->i_sb);
dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data;
@@ -189,7 +189,6 @@ static int ocfs2_dx_dir_link_trailer(struct inode *dir, handle_t *handle,

ocfs2_journal_dirty(handle, dx_root_bh);

-out:
return ret;
}

--
1.7.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/