The patch titled mlock cleanup has been added to the -mm tree. Its filename is mlock-cleanup.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: mlock cleanup From: Rik Bobbaers <Rik.Bobbaers@xxxxxxxxxxxxxx> mm is defined as vma->vm_mm, so use that. Acked-by: Hugh Dickins <hugh@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/mlock.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN mm/mlock.c~mlock-cleanup mm/mlock.c --- a/mm/mlock.c~mlock-cleanup +++ a/mm/mlock.c @@ -65,7 +65,7 @@ success: ret = make_pages_present(start, end); } - vma->vm_mm->locked_vm -= pages; + mm->locked_vm -= pages; out: if (ret == -ENOMEM) ret = -EAGAIN; _ Patches currently in -mm which might be from Rik.Bobbaers@xxxxxxxxxxxxxx are mlock-cleanup.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