From: Heiko Carstens Date: Wed, 14 Jan 2009 13:14:35 +0000 (+0100) Subject: System call wrappers part 33 X-Git-Tag: v2.6.28.1~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7669d15416597ad1a1b79fe75eef3be247cd3e68;p=thirdparty%2Fkernel%2Fstable.git System call wrappers part 33 commit 2b66421995d2e93c9d1a0111acf2581f8529c6e5 upstream. Signed-off-by: Heiko Carstens Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/pipe.c b/fs/pipe.c index 97108d7dcc97a..47b34d235419e 100644 --- a/fs/pipe.c +++ b/fs/pipe.c @@ -1064,7 +1064,7 @@ SYSCALL_DEFINE2(pipe2, int __user *, fildes, int, flags) return error; } -asmlinkage long sys_pipe(int __user *fildes) +SYSCALL_DEFINE1(pipe, int __user *, fildes) { return sys_pipe2(fildes, 0); } diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index 56c400138b057..16875f89e6a71 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h @@ -685,6 +685,7 @@ asmlinkage long sys_ppoll(struct pollfd __user *, unsigned int, struct timespec __user *, const sigset_t __user *, size_t); asmlinkage long sys_pipe2(int __user *, int); +asmlinkage long sys_pipe(int __user *); int kernel_execve(const char *filename, char *const argv[], char *const envp[]);