From: Wengang Wang Date: Fri, 10 Jul 2009 05:26:04 +0000 (+0800) Subject: ocfs2: log the actual return value of ocfs2_file_aio_write() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=812e7a6a43fc34bc8f70c2b80db4ea5997d66ea8;p=mv-sheeva.git ocfs2: log the actual return value of ocfs2_file_aio_write() 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 Signed-off-by: Joel Becker --- diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index 62442e413a0..a49fa44aea1 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,