selinux: remove secondary ops call to inode_link
authorJames Morris <jmorris@namei.org>
Thu, 29 Jan 2009 00:57:34 +0000 (11:57 +1100)
committerJames Morris <jmorris@namei.org>
Thu, 29 Jan 2009 21:55:06 +0000 (08:55 +1100)
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

index 42aa8de..da0e523 100644 (file)
@@ -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);
 }