aboutsummaryrefslogtreecommitdiffstats
path: root/security/selinux/hooks.c
diff options
context:
space:
mode:
authorJames Morris <[email protected]>2009-01-29 01:23:36 +0000
committerJames Morris <[email protected]>2009-01-29 21:55:11 +0000
commitaf294e41d0c95a291cc821a1b43ec2cd13976a8b (patch)
tree051fcc87fd27422af41809fb25e821c7b3b4a628 /security/selinux/hooks.c
parentselinux: remove secondary ops call to file_mprotect (diff)
downloadkernel-af294e41d0c95a291cc821a1b43ec2cd13976a8b.tar.gz
kernel-af294e41d0c95a291cc821a1b43ec2cd13976a8b.zip
selinux: remove secondary ops call to task_create
Remove secondary ops call to task_create, which is a noop in capabilities. Acked-by: Serge Hallyn <[email protected]> Acked-by: Eric Paris <[email protected]> Signed-off-by: James Morris <[email protected]>
Diffstat (limited to 'security/selinux/hooks.c')
-rw-r--r--security/selinux/hooks.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index 2c98071fba8b..72c1e5cd26d4 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -3212,12 +3212,6 @@ static int selinux_dentry_open(struct file *file, const struct cred *cred)
static int selinux_task_create(unsigned long clone_flags)
{
- int rc;
-
- rc = secondary_ops->task_create(clone_flags);
- if (rc)
- return rc;
-
return current_has_perm(current, PROCESS__FORK);
}