OSDN Git Service

Add Blackfin specific mmap implementation using sys_mmap2.
authorBernd Schmidt <bernds_cb1@t-online.de>
Thu, 22 Nov 2007 17:28:22 +0000 (17:28 -0000)
committerBernd Schmidt <bernds_cb1@t-online.de>
Thu, 22 Nov 2007 17:28:22 +0000 (17:28 -0000)
libc/sysdeps/linux/bfin/Makefile.arch
libc/sysdeps/linux/bfin/mmap.c [new file with mode: 0644]

index 7a428b3..fa62cc6 100644 (file)
@@ -5,7 +5,7 @@
 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 #
 
-CSRC := brk.c bsdsetjmp.c clone.c syscall.c
+CSRC := brk.c bsdsetjmp.c clone.c syscall.c mmap.c
 
 SSRC := __longjmp.S setjmp.S bsd-_setjmp.S vfork.S
 
diff --git a/libc/sysdeps/linux/bfin/mmap.c b/libc/sysdeps/linux/bfin/mmap.c
new file mode 100644 (file)
index 0000000..41140df
--- /dev/null
@@ -0,0 +1,24 @@
+/* Use new style mmap for bfin */
+
+#include <unistd.h>
+#include <errno.h>
+#include <sys/mman.h>
+#include <sys/syscall.h>
+#include <asm/page.h>
+
+#define __NR___syscall_mmap2       __NR_mmap2
+inline _syscall6(__ptr_t, __syscall_mmap2, __ptr_t, addr, 
+       size_t, len, int, prot, int, flags, int, fd, off_t, offset);
+
+libc_hidden_proto(mmap)
+
+__ptr_t mmap(__ptr_t addr, size_t len, int prot,
+               int flags, int fd, __off_t offset)
+{
+       if (offset & ~PAGE_MASK) {
+               return NULL;
+       }
+       return __syscall_mmap2(addr, len, prot, flags, fd, offset >> PAGE_SHIFT);
+}
+
+libc_hidden_def(mmap)