aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/file.c
diff options
context:
space:
mode:
authorWengang Wang <wen.gang.wang@oracle.com>2009-07-10 01:26:04 -0400
committerJoel Becker <joel.becker@oracle.com>2009-07-10 19:53:52 -0400
commit812e7a6a43fc34bc8f70c2b80db4ea5997d66ea8 (patch)
treee6bb0b870f7b17690ec81c118119afc910bcabec /fs/ocfs2/file.c
parent17ae26b669886efe237b77439e43eb390fceb119 (diff)
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 <wen.gang.wang@oracle.com> Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2/file.c')
-rw-r--r--fs/ocfs2/file.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c
index 62442e413a00..a49fa44aea1f 100644
--- a/fs/ocfs2/file.c
+++ b/fs/ocfs2/file.c
@@ -1918,8 +1918,10 @@ out_sems:
1918 1918
1919 mutex_unlock(&inode->i_mutex); 1919 mutex_unlock(&inode->i_mutex);
1920 1920
1921 if (written)
1922 ret = written;
1921 mlog_exit(ret); 1923 mlog_exit(ret);
1922 return written ? written : ret; 1924 return ret;
1923} 1925}
1924 1926
1925static int ocfs2_splice_to_file(struct pipe_inode_info *pipe, 1927static int ocfs2_splice_to_file(struct pipe_inode_info *pipe,