diff options
author | James Morris <jmorris@namei.org> | 2009-01-28 19:57:34 -0500 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2009-01-29 16:55:06 -0500 |
commit | efdfac437607e4acfed66c383091a376525eaec4 (patch) | |
tree | 6fd072bfca2ff589f8b5c7ed5274f91bb079c6c3 /security/selinux/hooks.c | |
parent | 97422ab9ef45118cb7418d799dc69040f17108ce (diff) |
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>
Diffstat (limited to 'security/selinux/hooks.c')
-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 42aa8de5f590..da0e523157d0 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 | |||
2630 | 2630 | ||
2631 | static int selinux_inode_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry) | 2631 | static int selinux_inode_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry) |
2632 | { | 2632 | { |
2633 | int rc; | ||
2634 | |||
2635 | rc = secondary_ops->inode_link(old_dentry, dir, new_dentry); | ||
2636 | if (rc) | ||
2637 | return rc; | ||
2638 | return may_link(dir, old_dentry, MAY_LINK); | 2633 | return may_link(dir, old_dentry, MAY_LINK); |
2639 | } | 2634 | } |
2640 | 2635 | ||