/* sys_frv.c: FRV arch-specific syscall wrappers1*2* Copyright (C) 2003-5 Red Hat, Inc. All Rights Reserved.3* Written by David Howells ([email protected])4* - Derived from arch/m68k/kernel/sys_m68k.c5*6* This program is free software; you can redistribute it and/or7* modify it under the terms of the GNU General Public License8* as published by the Free Software Foundation; either version9* 2 of the License, or (at your option) any later version.10*/1112#include <linux/errno.h>13#include <linux/sched.h>14#include <linux/mm.h>15#include <linux/fs.h>16#include <linux/smp.h>17#include <linux/sem.h>18#include <linux/msg.h>19#include <linux/shm.h>20#include <linux/stat.h>21#include <linux/mman.h>22#include <linux/file.h>23#include <linux/syscalls.h>24#include <linux/ipc.h>2526#include <asm/setup.h>27#include <asm/uaccess.h>2829asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,30unsigned long prot, unsigned long flags,31unsigned long fd, unsigned long pgoff)32{33/* As with sparc32, make sure the shift for mmap2 is constant34(12), no matter what PAGE_SIZE we have.... */3536/* But unlike sparc32, don't just silently break if we're37trying to map something we can't */38if (pgoff & ((1 << (PAGE_SHIFT - 12)) - 1))39return -EINVAL;4041return sys_mmap_pgoff(addr, len, prot, flags, fd,42pgoff >> (PAGE_SHIFT - 12));43}444546