[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20150131030524.GA6753@devel.8.8.4.4>
Date: Sat, 31 Jan 2015 12:05:24 +0900
From: Daeseok Youn <daeseok.youn@...il.com>
To: mfasheh@...e.com
Cc: jlbec@...lplan.org, ocfs2-devel@....oracle.com,
linux-kernel@...r.kernel.org
Subject: [PATCH] ocfs2: remove goto statement in ocfs2_dx_dir_link_trailer()
It is nothing to do in 'out' label, so just return 'ret'
variable.
Signed-off-by: Daeseok Youn <daeseok.youn@...il.com>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists