Consistently use page_shift in sysdeps/unix/sysv/linux/mmap64.c.

This commit is contained in:
Joseph Myers 2013-06-28 21:45:11 +00:00
parent 0432680e8c
commit 8fbec01098
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-06-28 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Shift by page_shift
instead of MMAP2_PAGE_SHIFT in call to INLINE_SYSCALL.
2013-06-28 Pierre Ynard <linkfanel@yahoo.fr>
[BZ #12492]

View File

@ -56,7 +56,7 @@ __mmap64 (void *addr, size_t len, int prot, int flags, int fd, off64_t offset)
result = (void *)
INLINE_SYSCALL (mmap2, 6, addr,
len, prot, flags, fd,
(off_t) (offset >> MMAP2_PAGE_SHIFT));
(off_t) (offset >> page_shift));
return result;
}
weak_alias (__mmap64, mmap64)