Skip to content

Commit

Permalink
Allow variable shift values in mmap2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Mar 24, 2010
1 parent 7749bf5 commit 085f930
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2010-03-24 Ulrich Drepper <drepper@redhat.com>

* sysdeps/unix/sysv/linux/mmap64.c: Allow variable shift values.

2010-03-24 H.J. Lu <hongjiu.lu@intel.com>

* sysdeps/x86_64/multiarch/strpbrk-c.c: Define only if SHARED
Expand Down
21 changes: 17 additions & 4 deletions sysdeps/unix/sysv/linux/mmap64.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 1999,2000,2001,2002,2006 Free Software Foundation, Inc.
/* Copyright (C) 1999,2000,2001,2002,2006,2010 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Jakub Jelinek <jakub@redhat.com>, 1999.
Expand Down Expand Up @@ -30,8 +30,13 @@
#ifdef __NR_mmap2

/* This is always 12, even on architectures where PAGE_SHIFT != 12. */
# ifndef MMAP2_PAGE_SHIFT
# define MMAP2_PAGE_SHIFT 12
# if MMAP2_PAGE_SHIFT == -1
static int page_shift;
# else
# ifndef MMAP2_PAGE_SHIFT
# define MMAP2_PAGE_SHIFT 12
# endif
# define page_shift MMAP2_PAGE_SHIFT
# endif

# ifndef __ASSUME_MMAP2_SYSCALL
Expand All @@ -44,7 +49,15 @@ void *
__mmap64 (void *addr, size_t len, int prot, int flags, int fd, off64_t offset)
{
#ifdef __NR_mmap2
if (offset & ((1 << MMAP2_PAGE_SHIFT) - 1))
# ifdef MMAP2_PAGE_SHIFT == -1
if (page_shift == 0)
{
int page_size = getpagesize ();
while ((1 << ++page_shift) != page_size)
;
}
# endif
if (offset & ((1 << page_shift) - 1))
{
__set_errno (EINVAL);
return MAP_FAILED;
Expand Down

0 comments on commit 085f930

Please sign in to comment.