tomoyo: remove tomoyo_gc_thread()->daemonize()
authorOleg Nesterov <oleg@redhat.com>
Tue, 16 Aug 2011 18:34:05 +0000 (20:34 +0200)
committerJames Morris <jmorris@namei.org>
Tue, 16 Aug 2011 23:48:41 +0000 (09:48 +1000)
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>
security/tomoyo/gc.c

index ae135fb..5295b5c 100644 (file)
@@ -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))