From: Rusty Russell It turns out that run_workqueue never has signal_pending(), since setting the handler to SIG_IGN means "don't make zombies, I'm ignoring them". Fix the comment, don't allow the signal, and remove the unused waitpid loop. This also allows simpler conversion of workueues to the kthread mechanism, which uses signals to indicate it's time to stop. kernel/workqueue.c | 14 +------------- 1 files changed, 1 insertion(+), 13 deletions(-) diff -puN kernel/workqueue.c~workqueue-cleanup kernel/workqueue.c --- 25/kernel/workqueue.c~workqueue-cleanup 2004-01-05 21:58:57.000000000 -0800 +++ 25-akpm/kernel/workqueue.c 2004-01-05 21:58:57.000000000 -0800 @@ -14,13 +14,10 @@ * Theodore Ts'o */ -#define __KERNEL_SYSCALLS__ - #include #include #include #include -#include #include #include #include @@ -171,7 +168,6 @@ static int worker_thread(void *__startup struct k_sigaction sa; daemonize("%s/%d", startup->name, cpu); - allow_signal(SIGCHLD); current->flags |= PF_IOTHREAD; cwq->thread = current; @@ -180,7 +176,7 @@ static int worker_thread(void *__startup complete(&startup->done); - /* Install a handler so SIGCLD is delivered */ + /* SIG_IGN makes children autoreap: see do_notify_parent(). */ sa.sa.sa_handler = SIG_IGN; sa.sa.sa_flags = 0; siginitset(&sa.sa.sa_mask, sigmask(SIGCHLD)); @@ -200,14 +196,6 @@ static int worker_thread(void *__startup if (!list_empty(&cwq->worklist)) run_workqueue(cwq); - - if (signal_pending(current)) { - while (waitpid(-1, NULL, __WALL|WNOHANG) > 0) - /* SIGCHLD - auto-reaping */ ; - - /* zap all other signals */ - flush_signals(current); - } } remove_wait_queue(&cwq->more_work, &wait); complete(&cwq->exit); _