add framework for mmap2 syscall unit to vary by arch
authorRich Felker <dalias@aerifal.cx>
Thu, 31 Jul 2014 03:24:31 +0000 (23:24 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 31 Jul 2014 03:24:31 +0000 (23:24 -0400)
src/internal/syscall.h
src/mman/mmap.c

index 0a2840adf1fc0f1326faf6e5613a89a7c62012af..bb96c26e7f2dee21055f0b45c7eb020e3b1f6029 100644 (file)
@@ -8,6 +8,10 @@
 #define SYSCALL_RLIM_INFINITY (~0ULL)
 #endif
 
+#ifndef SYSCALL_MMAP2_UNIT
+#define SYSCALL_MMAP2_UNIT 4096ULL
+#endif
+
 #ifndef __scc
 #define __scc(X) ((long) (X))
 typedef long syscall_arg_t;
index b56cff86b6da4b9265b3a1350fb4ea54c0f46015..1917a540322e080a798524ea039e5a1a86359fec 100644 (file)
@@ -11,7 +11,8 @@ static void dummy0(void) { }
 weak_alias(dummy1, __vm_lock);
 weak_alias(dummy0, __vm_unlock);
 
-#define OFF_MASK ((-0x2000ULL << (8*sizeof(long)-1)) | 0xfff)
+#define UNIT SYSCALL_MMAP2_UNIT
+#define OFF_MASK ((-0x2000ULL << (8*sizeof(long)-1)) | (UNIT-1))
 
 void *__mmap(void *start, size_t len, int prot, int flags, int fd, off_t off)
 {
@@ -27,7 +28,7 @@ void *__mmap(void *start, size_t len, int prot, int flags, int fd, off_t off)
        }
        if (flags & MAP_FIXED) __vm_lock(-1);
 #ifdef SYS_mmap2
-       ret = (void *)syscall(SYS_mmap2, start, len, prot, flags, fd, off>>12);
+       ret = (void *)syscall(SYS_mmap2, start, len, prot, flags, fd, off/UNIT);
 #else
        ret = (void *)syscall(SYS_mmap, start, len, prot, flags, fd, off);
 #endif