skas x86-64: fix wrong shift Signed-off-by: Paolo 'Blaisorblade' Giarrusso Index: linux-2.6.git/arch/x86_64/mm/proc_mm.c =================================================================== --- linux-2.6.git.orig/arch/x86_64/mm/proc_mm.c +++ linux-2.6.git/arch/x86_64/mm/proc_mm.c @@ -35,7 +35,7 @@ ssize_t write_proc_mm_emul(struct file * return(-EINVAL); ret = __do_mmap(mm, map->addr, map->len, map->prot, - map->flags, map->fd, map->offset >> PAGE_SHIFT); + map->flags, map->fd, map->offset); if((ret & ~PAGE_MASK) == 0) ret = count;