The patch titled fixup msync MS_ASYNC has been removed from the -mm tree. Its filename is mm-msync-cleanup-fix.patch This patch was dropped because it was folded into mm-msync-cleanup.patch ------------------------------------------------------ Subject: fixup msync MS_ASYNC From: Peter Zijlstra <peter@xxxxxxxxxxxxxxxxxxxxxxxxx> This makes MS_ASYNC happy again. Cc: Hugh Dickins <hugh@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/msync.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN mm/msync.c~mm-msync-cleanup-fix mm/msync.c --- a/mm/msync.c~mm-msync-cleanup-fix +++ a/mm/msync.c @@ -88,8 +88,10 @@ asmlinkage long sys_msync(unsigned long down_read(&mm->mmap_sem); vma = find_vma(mm, start); } else { - if (start >= end) + if (start >= end) { + error = 0; goto out_unlock; + } vma = vma->vm_next; } } _ Patches currently in -mm which might be from peter@xxxxxxxxxxxxxxxxxxxxxxxxx are mm-msync-cleanup.patch mm-msync-cleanup-fix.patch - 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