The patch titled Subject: shmem: correct build warning in shmem interleave has been added to the -mm tree. Its filename is tmpfs-interleave-the-starting-node-of-dev-shmem-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Nathan Zimmer <nzimmer@xxxxxxx> Subject: shmem: correct build warning in shmem interleave Correcting a build warning in shmem_interleave Signed-off-by: Nathan Zimmer <nzimmer@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/shmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/shmem.c~tmpfs-interleave-the-starting-node-of-dev-shmem-fix mm/shmem.c --- a/mm/shmem.c~tmpfs-interleave-the-starting-node-of-dev-shmem-fix +++ a/mm/shmem.c @@ -1338,7 +1338,7 @@ static unsigned long shmem_interleave(st unsigned long offset; /* Use the vm_files prefered node as the initial offset. */ - offset = (unsigned long *) vma->vm_private_data; + offset = (unsigned long)vma->vm_private_data; offset += ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff; _ Subject: Subject: shmem: correct build warning in shmem interleave Patches currently in -mm which might be from nzimmer@xxxxxxx are shmem-provide-vm_ops-when-also-providing-a-mem-policy.patch tmpfs-interleave-the-starting-node-of-dev-shmem.patch tmpfs-interleave-the-starting-node-of-dev-shmem-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