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> 16#include <linux/fs.h> 17#include <linux/smp.h> 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> 24#include <linux/ipc.h> 25 26#include <asm/uaccess.h> 27#include <asm/segment.h> 28 29asmlinkage long 30sys_mmap2(unsigned long addr, unsigned long len, unsigned long prot, 31 unsigned long flags, unsigned long fd, unsigned long pgoff) 32{ 33 /* bug(?): 8Kb pages here */ 34 return sys_mmap_pgoff(addr, len, prot, flags, fd, pgoff); 35} 36