Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 812e7a6a authored by Wengang Wang's avatar Wengang Wang Committed by Joel Becker
Browse files

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: default avatarWengang Wang <wen.gang.wang@oracle.com>
Signed-off-by: default avatarJoel Becker <joel.becker@oracle.com>
parent 17ae26b6
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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,