Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* $Id: sys_cris.c,v 1.6 2004/03/11 11:38:40 starvik Exp $ |
| 2 | * |
| 3 | * linux/arch/cris/kernel/sys_cris.c |
| 4 | * |
| 5 | * This file contains various random system calls that |
| 6 | * have a non-standard calling sequence on some platforms. |
| 7 | * Since we don't have to do any backwards compatibility, our |
| 8 | * versions are done in the most "normal" way possible. |
| 9 | * |
| 10 | */ |
| 11 | |
| 12 | #include <linux/errno.h> |
| 13 | #include <linux/sched.h> |
| 14 | #include <linux/syscalls.h> |
| 15 | #include <linux/mm.h> |
Jesper Nilsson | 5978e79 | 2007-11-14 17:00:53 -0800 | [diff] [blame] | 16 | #include <linux/fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/sem.h> |
| 19 | #include <linux/msg.h> |
| 20 | #include <linux/shm.h> |
| 21 | #include <linux/stat.h> |
| 22 | #include <linux/mman.h> |
| 23 | #include <linux/file.h> |
Adrian Bunk | cba4fbb | 2007-10-16 23:29:24 -0700 | [diff] [blame] | 24 | #include <linux/ipc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <asm/segment.h> |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | asmlinkage long |
| 30 | sys_mmap2(unsigned long addr, unsigned long len, unsigned long prot, |
| 31 | unsigned long flags, unsigned long fd, unsigned long pgoff) |
| 32 | { |
Al Viro | f8b7256 | 2009-11-30 17:37:04 -0500 | [diff] [blame] | 33 | /* bug(?): 8Kb pages here */ |
| 34 | return sys_mmap_pgoff(addr, len, prot, flags, fd, pgoff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | } |