commit | cdcf116d44e78c7216ba9f8be9af1cdfca7af728 | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Thu Dec 08 10:51:53 2011 -0500 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Fri Jan 06 23:16:53 2012 -0500 |
tree | 2417cfd3e06ac5e2468585e8f00d580242cb5571 | |
parent | d8c9584ea2a92879f471fd3a2be3af6c534fb035 [diff] [blame] |
switch security_path_chmod() to struct path * Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/open.c b/fs/open.c index 2659f59..77becc0 100644 --- a/fs/open.c +++ b/fs/open.c
@@ -456,7 +456,7 @@ 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);