1 /* sys_frv.c: FRV arch-specific syscall wrappers
3 * Copyright (C) 2003-5 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 * - Derived from arch/m68k/kernel/sys_m68k.c
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
13 #include <linux/errno.h>
14 #include <linux/sched.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/utsname.h>
25 #include <linux/syscalls.h>
26 #include <linux/ipc.h>
28 #include <asm/setup.h>
29 #include <asm/uaccess.h>
31 asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,
32 unsigned long prot, unsigned long flags,
33 unsigned long fd, unsigned long pgoff)
36 struct file * file = NULL;
38 /* As with sparc32, make sure the shift for mmap2 is constant
39 (12), no matter what PAGE_SIZE we have.... */
41 /* But unlike sparc32, don't just silently break if we're
42 trying to map something we can't */
43 if (pgoff & ((1 << (PAGE_SHIFT - 12)) - 1))
45 pgoff >>= PAGE_SHIFT - 12;
47 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
48 if (!(flags & MAP_ANONYMOUS)) {
54 down_write(¤t->mm->mmap_sem);
55 error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
56 up_write(¤t->mm->mmap_sem);
64 #if 0 /* DAVIDM - do we want this */
65 struct mmap_arg_struct64 {
70 __u64 offset; /* 64 bits */
74 asmlinkage long sys_mmap64(struct mmap_arg_struct64 *arg)
77 struct file * file = NULL;
78 struct mmap_arg_struct64 a;
81 if (copy_from_user(&a, arg, sizeof(a)))
84 if ((long)a.offset & ~PAGE_MASK)
87 pgoff = a.offset >> PAGE_SHIFT;
88 if ((a.offset >> PAGE_SHIFT) != pgoff)
91 if (!(a.flags & MAP_ANONYMOUS)) {
97 a.flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
99 down_write(¤t->mm->mmap_sem);
100 error = do_mmap_pgoff(file, a.addr, a.len, a.prot, a.flags, pgoff);
101 up_write(¤t->mm->mmap_sem);
110 * sys_ipc() is the de-multiplexer for the SysV IPC calls..
112 * This is really horribly ugly.
114 asmlinkage long sys_ipc(unsigned long call,
116 unsigned long second,
123 version = call >> 16; /* hack for backward compatibility */
128 return sys_semtimedop(first, (struct sembuf __user *)ptr, second, NULL);
130 return sys_semtimedop(first, (struct sembuf __user *)ptr, second,
131 (const struct timespec __user *)fifth);
134 return sys_semget (first, second, third);
139 if (get_user(fourth.__pad, (void * __user *) ptr))
141 return sys_semctl (first, second, third, fourth);
145 return sys_msgsnd (first, (struct msgbuf __user *) ptr,
150 struct ipc_kludge tmp;
154 if (copy_from_user(&tmp,
155 (struct ipc_kludge __user *) ptr,
158 return sys_msgrcv (first, tmp.msgp, second,
162 return sys_msgrcv (first,
163 (struct msgbuf __user *) ptr,
164 second, fifth, third);
167 return sys_msgget ((key_t) first, second);
169 return sys_msgctl (first, second, (struct msqid_ds __user *) ptr);
175 ret = do_shmat (first, (char __user *) ptr, second, &raddr);
178 return put_user (raddr, (ulong __user *) third);
180 case 1: /* iBCS2 emulator entry point */
181 if (!segment_eq(get_fs(), get_ds()))
183 /* The "(ulong *) third" is valid _only_ because of the kernel segment thing */
184 return do_shmat (first, (char __user *) ptr, second, (ulong *) third);
187 return sys_shmdt ((char __user *)ptr);
189 return sys_shmget (first, second, third);
191 return sys_shmctl (first, second,
192 (struct shmid_ds __user *) ptr);