X-Git-Url: http://pilppa.org/gitweb/?a=blobdiff_plain;f=arch%2Fxtensa%2Fkernel%2Fsyscall.c;h=ac15ecbdf9199871f3e31ef7e013fd62e1ce3b06;hb=cb28a1bbdb4790378e7366d6c9ee1d2340b84f92;hp=f3e16efcd47a23bb16fdeaedb9dcf865a573de37;hpb=b160292cc216a50fd0cd386b0bda2cd48352c73b;p=linux-2.6-omap-h63xx.git diff --git a/arch/xtensa/kernel/syscall.c b/arch/xtensa/kernel/syscall.c index f3e16efcd47..ac15ecbdf91 100644 --- a/arch/xtensa/kernel/syscall.c +++ b/arch/xtensa/kernel/syscall.c @@ -49,7 +49,7 @@ asmlinkage long xtensa_pipe(int __user *userfds) int fd[2]; int error; - error = do_pipe(fd); + error = do_pipe_flags(fd, 0); if (!error) { if (copy_to_user(userfds, fd, 2 * sizeof(int))) error = -EFAULT;