From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wengang Wang Date: Fri, 10 Jul 2009 14:22:07 +0800 Subject: [Ocfs2-devel] [PATCH 1/1] a fix of logging return value. In-Reply-To: <3A2AA175-B34E-4A01-8B9E-45361846B18C@oracle.com> References: <200907100528.n6A5Sv4J030693@acsinet15.oracle.com> <3A2AA175-B34E-4A01-8B9E-45361846B18C@oracle.com> Message-ID: <4A56DE0F.3050009@oracle.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ocfs2-devel@oss.oracle.com Hi Sunil, Ok. I will post patche(s) for it later. regards, wengang. Sunil Mushran wrote: > sob > > Hi Wengang, functions is aops.c are missing mlogs. Do you have the > bandwidth to help out? > > On Jul 9, 2009, at 10:26 PM, Wengang Wang wrote: > >> in ocfs2_file_aio_write(), log_exit() could don't log the value >> which is really returned. this patch fixes it. >> >> Signed-off-by: Wengang Wang >> --- >> fs/ocfs2/file.c | 4 +++- >> 1 files changed, 3 insertions(+), 1 deletions(-) >> >> diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c >> index 62442e4..a49fa44 100644 >> --- a/fs/ocfs2/file.c >> +++ b/fs/ocfs2/file.c >> @@ -1918,8 +1918,10 @@ out_sems: >> >> mutex_unlock(&inode->i_mutex); >> >> + if (written) >> + ret = written; >> mlog_exit(ret); >> - return written ? written : ret; >> + return ret; >> } >> >> static int ocfs2_splice_to_file(struct pipe_inode_info *pipe, >> -- >> 1.6.2.5 >>