summaryrefslogtreecommitdiffstats
path: root/fs/open.c
diff options
context:
space:
mode:
authorAl Viro2011-12-08 16:51:53 +0100
committerAl Viro2012-01-07 05:16:53 +0100
commitcdcf116d44e78c7216ba9f8be9af1cdfca7af728 (patch)
tree2417cfd3e06ac5e2468585e8f00d580242cb5571 /fs/open.c
parentvfs: prefer ->dentry->d_sb to ->mnt->mnt_sb (diff)
downloadkernel-qcow2-linux-cdcf116d44e78c7216ba9f8be9af1cdfca7af728.tar.gz
kernel-qcow2-linux-cdcf116d44e78c7216ba9f8be9af1cdfca7af728.tar.xz
kernel-qcow2-linux-cdcf116d44e78c7216ba9f8be9af1cdfca7af728.zip
switch security_path_chmod() to struct path *
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/open.c')
-rw-r--r--fs/open.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/open.c b/fs/open.c
index 2659f596f4c5..77becc041149 100644
--- a/fs/open.c
+++ b/fs/open.c
@@ -456,7 +456,7 @@ static int chmod_common(struct path *path, umode_t mode)
if (error)
return error;
mutex_lock(&inode->i_mutex);
- error = security_path_chmod(path->dentry, path->mnt, mode);
+ error = security_path_chmod(path, mode);
if (error)
goto out_unlock;
newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);