diff options
author | James Morris <jmorris@namei.org> | 2009-01-29 12:10:56 +1100 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2009-01-30 08:55:08 +1100 |
commit | f51115b9ab5b9cfd0b7be1cce75afbf3ffbcdd87 (patch) | |
tree | bc93812358e9a76c24ca970224fcd8298fe8b80c /security/selinux | |
parent | dd4907a6d4e038dc65839fcd4030ebefe2f5f439 (diff) | |
download | linux-f51115b9ab5b9cfd0b7be1cce75afbf3ffbcdd87.tar.gz linux-f51115b9ab5b9cfd0b7be1cce75afbf3ffbcdd87.tar.xz |
selinux: remove secondary ops call to inode_follow_link
Remove secondary ops call to inode_follow_link, which is
a noop in capabilities.
Acked-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/selinux')
-rw-r--r-- | security/selinux/hooks.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 03621928f1b2..67291a385c75 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -2674,11 +2674,7 @@ static int selinux_inode_readlink(struct dentry *dentry) static int selinux_inode_follow_link(struct dentry *dentry, struct nameidata *nameidata) { const struct cred *cred = current_cred(); - int rc; - rc = secondary_ops->inode_follow_link(dentry, nameidata); - if (rc) - return rc; return dentry_has_perm(cred, NULL, dentry, FILE__READ); } |