diff options
author | Arnd Bergmann <arnd@arndb.de> | 2006-10-02 05:18:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-02 10:57:23 -0400 |
commit | 135ab6ec8fdad6f61aabe53f456821baf4a4aa0e (patch) | |
tree | 22a46321949e6621e95f6c21a3d34e3516d07cc8 /include/asm-mips/unistd.h | |
parent | 821278a75d270048e291fcbec9304439a176ba88 (diff) |
[PATCH] remove remaining errno and __KERNEL_SYSCALLS__ references
The last in-kernel user of errno is gone, so we should remove the definition
and everything referring to it. This also removes the now-unused lib/execve.c
file that was introduced earlier.
Also remove every trace of __KERNEL_SYSCALLS__ that still remained in the
kernel.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Andi Kleen <ak@muc.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Russell King <rmk@arm.linux.org.uk>
Cc: Ian Molton <spyro@f2s.com>
Cc: Mikael Starvik <starvik@axis.com>
Cc: David Howells <dhowells@redhat.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Hirokazu Takata <takata.hirokazu@renesas.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: Kazumoto Kojima <kkojima@rr.iij4u.or.jp>
Cc: Richard Curnow <rc@rc0.org.uk>
Cc: William Lee Irwin III <wli@holomorphy.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Cc: Miles Bader <uclinux-v850@lsi.nec.co.jp>
Cc: Chris Zankel <chris@zankel.net>
Cc: "Luck, Tony" <tony.luck@intel.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-mips/unistd.h')
-rw-r--r-- | include/asm-mips/unistd.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/include/asm-mips/unistd.h b/include/asm-mips/unistd.h index c39142920fe6..685c91467e63 100644 --- a/include/asm-mips/unistd.h +++ b/include/asm-mips/unistd.h | |||
@@ -1212,45 +1212,6 @@ type name (atype a,btype b,ctype c,dtype d,etype e,ftype f) \ | |||
1212 | # define __ARCH_WANT_COMPAT_SYS_TIME | 1212 | # define __ARCH_WANT_COMPAT_SYS_TIME |
1213 | # endif | 1213 | # endif |
1214 | 1214 | ||
1215 | #ifdef __KERNEL_SYSCALLS__ | ||
1216 | |||
1217 | #include <linux/compiler.h> | ||
1218 | #include <linux/types.h> | ||
1219 | #include <linux/linkage.h> | ||
1220 | #include <asm/ptrace.h> | ||
1221 | #include <asm/sim.h> | ||
1222 | |||
1223 | /* | ||
1224 | * we need this inline - forking from kernel space will result | ||
1225 | * in NO COPY ON WRITE (!!!), until an execve is executed. This | ||
1226 | * is no problem, but for the stack. This is handled by not letting | ||
1227 | * main() use the stack at all after fork(). Thus, no function | ||
1228 | * calls - which means inline code for fork too, as otherwise we | ||
1229 | * would use the stack upon exit from 'fork()'. | ||
1230 | * | ||
1231 | * Actually only pause and fork are needed inline, so that there | ||
1232 | * won't be any messing with the stack from main(), but we define | ||
1233 | * some others too. | ||
1234 | */ | ||
1235 | static inline _syscall3(int,execve,const char *,file,char **,argv,char **,envp) | ||
1236 | |||
1237 | asmlinkage unsigned long sys_mmap( | ||
1238 | unsigned long addr, size_t len, | ||
1239 | int prot, int flags, | ||
1240 | int fd, off_t offset); | ||
1241 | asmlinkage long sys_mmap2( | ||
1242 | unsigned long addr, unsigned long len, | ||
1243 | unsigned long prot, unsigned long flags, | ||
1244 | unsigned long fd, unsigned long pgoff); | ||
1245 | asmlinkage int sys_execve(nabi_no_regargs struct pt_regs regs); | ||
1246 | asmlinkage int sys_pipe(nabi_no_regargs struct pt_regs regs); | ||
1247 | struct sigaction; | ||
1248 | asmlinkage long sys_rt_sigaction(int sig, | ||
1249 | const struct sigaction __user *act, | ||
1250 | struct sigaction __user *oact, | ||
1251 | size_t sigsetsize); | ||
1252 | |||
1253 | #endif /* __KERNEL_SYSCALLS__ */ | ||
1254 | #endif /* !__ASSEMBLY__ */ | 1215 | #endif /* !__ASSEMBLY__ */ |
1255 | 1216 | ||
1256 | /* | 1217 | /* |