mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
Consistently use page_shift in sysdeps/unix/sysv/linux/mmap64.c.
This commit is contained in:
parent
0432680e8c
commit
8fbec01098
@ -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]
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user