diff options
author | James Morris <jmorris@namei.org> | 2009-01-29 01:15:59 (GMT) |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2009-01-29 21:55:10 (GMT) |
commit | 438add6b32d9295db6e3ecd4d9e137086ec5b5d9 (patch) | |
tree | 70658fa14a51af66a3359e306d263955d3eaf13f | |
parent | 188fbcca9dd02f15dcf45cfc51ce0dd6c13993f6 (diff) | |
download | linux-438add6b32d9295db6e3ecd4d9e137086ec5b5d9.tar.xz |
selinux: remove secondary ops call to inode_setattr
Remove secondary ops call to inode_setattr, which is
a noop in capabilities.
Acked-by: Serge Hallyn <serue@us.ibm.com>
Acked-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
-rw-r--r-- | security/selinux/hooks.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 7e90c9e..08b5068 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -2694,11 +2694,6 @@ static int selinux_inode_permission(struct inode *inode, int mask) static int selinux_inode_setattr(struct dentry *dentry, struct iattr *iattr) { const struct cred *cred = current_cred(); - int rc; - - rc = secondary_ops->inode_setattr(dentry, iattr); - if (rc) - return rc; if (iattr->ia_valid & ATTR_FORCE) return 0; |