The patch titled Subject: ocfs2_direct_IO_write() misses ocfs2_is_overwrite() error code has been removed from the -mm tree. Its filename was ocfs2_direct_io_write-misses-ocfs2_is_overwrite-error-code.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: "Norton.Zhu" <norton.zhu@xxxxxxxxxx> Subject: ocfs2_direct_IO_write() misses ocfs2_is_overwrite() error code If ocfs2_is_overwrite failed, ocfs2_direct_IO_write mays till return success to the caller. Signed-off-by: Norton.Zhu <norton.zhu@xxxxxxxxxx> Cc: Mark Fasheh <mfasheh@xxxxxxx> Cc: Joel Becker <jlbec@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ocfs2/aops.c | 1 + 1 file changed, 1 insertion(+) diff -puN fs/ocfs2/aops.c~ocfs2_direct_io_write-misses-ocfs2_is_overwrite-error-code fs/ocfs2/aops.c --- a/fs/ocfs2/aops.c~ocfs2_direct_io_write-misses-ocfs2_is_overwrite-error-code +++ a/fs/ocfs2/aops.c @@ -864,6 +864,7 @@ static ssize_t ocfs2_direct_IO_write(str is_overwrite = ocfs2_is_overwrite(osb, inode, offset); if (is_overwrite < 0) { mlog_errno(is_overwrite); + ret = is_overwrite; ocfs2_inode_unlock(inode, 1); goto clean_orphan; } _ Patches currently in -mm which might be from norton.zhu@xxxxxxxxxx are -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html