2017-01-01 10:16:53

by Fabian Frédérick

[permalink] [raw]
Subject: [PATCH 2/2 linux-next] ext4: return -EACCES on inode_owner_or_capable() error

like other cases in ext4_ioctl()

Signed-off-by: Fabian Frederick <[email protected]>
---
fs/ext4/ioctl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ext4/ioctl.c b/fs/ext4/ioctl.c
index 4f113e6..5654ccd 100644
--- a/fs/ext4/ioctl.c
+++ b/fs/ext4/ioctl.c
@@ -501,7 +501,7 @@ long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
int err;

if (!inode_owner_or_capable(inode))
- return -EPERM;
+ return -EACCES;

if (ext4_has_metadata_csum(inode->i_sb)) {
ext4_warning(sb, "Setting inode version is not "
--
2.7.4