aboutsummaryrefslogtreecommitdiffstats
path: root/fs/pipe.c
diff options
context:
space:
mode:
authorJens Axboe <jens.axboe@oracle.com>2010-05-24 19:15:57 +0200
committerJens Axboe <jens.axboe@oracle.com>2010-05-24 19:15:57 +0200
commit0191f8697bbdfefcd36e7b8dc3eeddfe82893e4b (patch)
tree2be5e7911e227b46d2e7b6ba3db9795ede71d8f6 /fs/pipe.c
parentblock: Adjust elv_iosched_show to return "none" for bio-based DM (diff)
downloadlinux-dev-0191f8697bbdfefcd36e7b8dc3eeddfe82893e4b.tar.xz
linux-dev-0191f8697bbdfefcd36e7b8dc3eeddfe82893e4b.zip
pipe: F_SETPIPE_SZ should return -EPERM for non-root
If the passed in size is larger than what has been set as the system wide limit and the user is not root, we want to return permission denied (not invalid value). Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'fs/pipe.c')
-rw-r--r--fs/pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/pipe.c b/fs/pipe.c
index d79872eba09a..01ca9fab95fa 100644
--- a/fs/pipe.c
+++ b/fs/pipe.c
@@ -1170,7 +1170,7 @@ long pipe_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
switch (cmd) {
case F_SETPIPE_SZ:
if (!capable(CAP_SYS_ADMIN) && arg > pipe_max_pages)
- return -EINVAL;
+ return -EPERM;
/*
* The pipe needs to be at least 2 pages large to
* guarantee POSIX behaviour.