Correcting a build warning in shmem_interleave Signed-off-by: Nathan Zimmer <nzimmer@xxxxxxx> --- mm/shmem.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/mm/shmem.c b/mm/shmem.c index cee03c0..a38960b 100644 --- a/mm/shmem.c +++ b/mm/shmem.c @@ -1338,7 +1338,7 @@ static unsigned long shmem_interleave(struct vm_area_struct *vma, 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; -- 1.6.0.2 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>