Gitweb: http://git.kernel.org/linus/efdfac437607e4acfed66c383091a376525eaec4
Commit: efdfac437607e4acfed66c383091a376525eaec4
Parent: 97422ab9ef45118cb7418d799dc69040f17108ce
Author: James Morris <jmorris@namei.org>
AuthorDate: Thu Jan 29 11:57:34 2009 +1100
Committer: James Morris <jmorris@namei.org>
CommitDate: Fri Jan 30 08:55:06 2009 +1100
selinux: remove secondary ops call to inode_link
Remove secondary ops call to inode_link, 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>
---
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 42aa8de..da0e523 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -2630,11 +2630,6 @@ static int selinux_inode_create(struct inode *dir, struct dentry *dentry, int ma
static int selinux_inode_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
{
- int rc;
-
- rc = secondary_ops->inode_link(old_dentry, dir, new_dentry);
- if (rc)
- return rc;
return may_link(dir, old_dentry, MAY_LINK);
}
--