]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Allow variable shift values in mmap2.
authorUlrich Drepper <drepper@redhat.com>
Wed, 24 Mar 2010 21:59:43 +0000 (14:59 -0700)
committerUlrich Drepper <drepper@redhat.com>
Wed, 24 Mar 2010 21:59:43 +0000 (14:59 -0700)
ChangeLog
sysdeps/unix/sysv/linux/mmap64.c

index 004c6bfd41a178d34a2638448403a52d4f0f6b2a..7a7e46ca68631af47fcb0d8ba8ffad5d85288703 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index d3c68cd106c9d4d4e8fc2b9b3cf7a3715da86a82..85c801d501abfb6b8ca0498464478fb689611fe7 100644 (file)
@@ -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.
 
 #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
@@ -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;