diff options
author | Oleg Nesterov <oleg@redhat.com> | 2011-08-16 20:34:05 +0200 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2011-08-17 09:48:41 +1000 |
commit | 09f464bf0961aba3cd917d4939597bafb269fb95 (patch) | |
tree | ffdbb860514012bc2c8fef75cff3aa77c94fb9fc /security/tomoyo | |
parent | 1e39f384bb01b0395b69cb70c2cacae65012f203 (diff) |
tomoyo: remove tomoyo_gc_thread()->daemonize()
daemonize() is only needed when a user-space task does kernel_thread().
tomoyo_gc_thread() is kthread_create()'ed and thus it doesn't need
the soon-to-be-deprecated daemonize().
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Acked-by: Tejun Heo <tj@kernel.org>
Acked-by: Matt Fleming <matt.fleming@intel.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/tomoyo')
-rw-r--r-- | security/tomoyo/gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/tomoyo/gc.c b/security/tomoyo/gc.c index ae135fbbbe95..5295b5caaa21 100644 --- a/security/tomoyo/gc.c +++ b/security/tomoyo/gc.c @@ -660,7 +660,7 @@ static int tomoyo_gc_thread(void *unused) static DEFINE_MUTEX(tomoyo_gc_mutex); if (!mutex_trylock(&tomoyo_gc_mutex)) goto out; - daemonize("GC for TOMOYO"); + do { tomoyo_collect_entry(); if (list_empty(&tomoyo_gc_list)) |