diff options
author | Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | 2017-07-14 19:38:36 +0900 |
---|---|---|
committer | James Morris <james.l.morris@oracle.com> | 2017-07-18 17:24:03 +1000 |
commit | 3cf29931453215536916d0c4da953fce1911ced3 (patch) | |
tree | 04745a9399692f288e5494acef2e1a912f0e550e /security | |
parent | c4758fa59285fe4dbfeab4364a6957936d040fbf (diff) | |
download | linux-3cf29931453215536916d0c4da953fce1911ced3.tar.gz linux-3cf29931453215536916d0c4da953fce1911ced3.tar.bz2 linux-3cf29931453215536916d0c4da953fce1911ced3.zip |
LSM: Remove security_task_create() hook.
Since commit a79be238600d1a03 ("selinux: Use task_alloc hook rather than
task_create hook") changed to use task_alloc hook, task_create hook is
no longer used.
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: James Morris <james.l.morris@oracle.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/security.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/security/security.c b/security/security.c index 30132378d103..55b5997e4b72 100644 --- a/security/security.c +++ b/security/security.c @@ -979,11 +979,6 @@ int security_file_open(struct file *file, const struct cred *cred) return fsnotify_perm(file, MAY_OPEN); } -int security_task_create(unsigned long clone_flags) -{ - return call_int_hook(task_create, 0, clone_flags); -} - int security_task_alloc(struct task_struct *task, unsigned long clone_flags) { return call_int_hook(task_alloc, 0, task, clone_flags); |