2 * linux/arch/m68knommu/kernel/sys_m68k.c
4 * This file contains various random system calls that
5 * have a non-standard calling sequence on the Linux/m68k
9 #include <linux/errno.h>
10 #include <linux/sched.h>
12 #include <linux/smp.h>
13 #include <linux/smp_lock.h>
14 #include <linux/sem.h>
15 #include <linux/msg.h>
16 #include <linux/shm.h>
17 #include <linux/stat.h>
18 #include <linux/syscalls.h>
19 #include <linux/mman.h>
20 #include <linux/file.h>
21 #include <linux/utsname.h>
23 #include <asm/setup.h>
24 #include <asm/uaccess.h>
25 #include <asm/cachectl.h>
26 #include <asm/traps.h>
28 #include <asm/cacheflush.h>
31 * sys_pipe() is the normal C calling standard for creating
32 * a pipe. It's not the way unix traditionally does this, though.
34 asmlinkage int sys_pipe(unsigned long * fildes)
41 if (copy_to_user(fildes, fd, 2*sizeof(int)))
47 /* common code for old and new mmaps */
48 static inline long do_mmap2(
49 unsigned long addr, unsigned long len,
50 unsigned long prot, unsigned long flags,
51 unsigned long fd, unsigned long pgoff)
54 struct file * file = NULL;
56 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
57 if (!(flags & MAP_ANONYMOUS)) {
63 down_write(¤t->mm->mmap_sem);
64 error = do_mmap_pgoff(file, addr, len, prot, flags, pgoff);
65 up_write(¤t->mm->mmap_sem);
73 asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,
74 unsigned long prot, unsigned long flags,
75 unsigned long fd, unsigned long pgoff)
77 return do_mmap2(addr, len, prot, flags, fd, pgoff);
81 * Perform the select(nd, in, out, ex, tv) and mmap() system
82 * calls. Linux/m68k cloned Linux/i386, which didn't use to be able to
83 * handle more than 4 system call parameters, so these system calls
84 * used a memory block for parameter passing..
87 struct mmap_arg_struct {
96 asmlinkage int old_mmap(struct mmap_arg_struct *arg)
98 struct mmap_arg_struct a;
101 if (copy_from_user(&a, arg, sizeof(a)))
105 if (a.offset & ~PAGE_MASK)
108 a.flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
110 error = do_mmap2(a.addr, a.len, a.prot, a.flags, a.fd, a.offset >> PAGE_SHIFT);
115 struct sel_arg_struct {
117 fd_set *inp, *outp, *exp;
121 asmlinkage int old_select(struct sel_arg_struct *arg)
123 struct sel_arg_struct a;
125 if (copy_from_user(&a, arg, sizeof(a)))
127 /* sys_select() does the appropriate kernel locking */
128 return sys_select(a.n, a.inp, a.outp, a.exp, a.tvp);
132 * sys_ipc() is the de-multiplexer for the SysV IPC calls..
134 * This is really horribly ugly.
136 asmlinkage int sys_ipc (uint call, int first, int second,
137 int third, void *ptr, long fifth)
141 version = call >> 16; /* hack for backward compatibility */
147 return sys_semop (first, (struct sembuf *)ptr, second);
149 return sys_semget (first, second, third);
154 if (get_user(fourth.__pad, (void **) ptr))
156 return sys_semctl (first, second, third, fourth);
164 return sys_msgsnd (first, (struct msgbuf *) ptr,
169 struct ipc_kludge tmp;
172 if (copy_from_user (&tmp,
173 (struct ipc_kludge *)ptr,
176 return sys_msgrcv (first, tmp.msgp, second,
180 return sys_msgrcv (first,
181 (struct msgbuf *) ptr,
182 second, fifth, third);
185 return sys_msgget ((key_t) first, second);
187 return sys_msgctl (first, second,
188 (struct msqid_ds *) ptr);
196 /* sys_cacheflush -- flush (part of) the processor cache. */
198 sys_cacheflush (unsigned long addr, int scope, int cache, unsigned long len)
204 asmlinkage int sys_getpagesize(void)