diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-12-08 10:51:53 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-06 23:16:53 -0500 |
commit | cdcf116d44e78c7216ba9f8be9af1cdfca7af728 (patch) | |
tree | 2417cfd3e06ac5e2468585e8f00d580242cb5571 /fs/open.c | |
parent | d8c9584ea2a92879f471fd3a2be3af6c534fb035 (diff) |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -456,7 +456,7 @@ static int chmod_common(struct path *path, umode_t mode) | |||
456 | if (error) | 456 | if (error) |
457 | return error; | 457 | return error; |
458 | mutex_lock(&inode->i_mutex); | 458 | mutex_lock(&inode->i_mutex); |
459 | error = security_path_chmod(path->dentry, path->mnt, mode); | 459 | error = security_path_chmod(path, mode); |
460 | if (error) | 460 | if (error) |
461 | goto out_unlock; | 461 | goto out_unlock; |
462 | newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO); | 462 | newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO); |