From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752051AbXDKLsx (ORCPT ); Wed, 11 Apr 2007 07:48:53 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752064AbXDKLsx (ORCPT ); Wed, 11 Apr 2007 07:48:53 -0400 Received: from mail.screens.ru ([213.234.233.54]:39341 "EHLO mail.screens.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752051AbXDKLsw (ORCPT ); Wed, 11 Apr 2007 07:48:52 -0400 Date: Wed, 11 Apr 2007 15:48:05 +0400 From: Oleg Nesterov To: Gautham R Shenoy Cc: "Rafael J. Wysocki" , Andrew Morton , "Eric W. Biederman" , Davide Libenzi , Jan Engelhardt , Ingo Molnar , Linus Torvalds , Robin Holt , Roland McGrath , "Serge E. Hallyn" , linux-kernel@vger.kernel.org, vatsa@in.ibm.com Subject: Re: [PATCH] kthread: Don't depend on work queues Message-ID: <20070411114805.GA165@tv-sign.ru> References: <20070410185133.GA104@tv-sign.ru> <20070411000316.52f2551e.akpm@linux-foundation.org> <200704111213.35523.rjw@sisk.pl> <20070411112105.GA24813@in.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070411112105.GA24813@in.ibm.com> User-Agent: Mutt/1.5.11 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On 04/11, Gautham R Shenoy wrote: > > On Wed, Apr 11, 2007 at 12:13:34PM +0200, Rafael J. Wysocki wrote: > > > > It should be calling try_to_freeze() somewhere anyway. We may need to freeze > > all tasks in some cases. > > How about > for (;;) { > try_to_freeze(); > > ? Why? > This change allows us to make all the worker threads freezeable by default. > >From cpu-hotplug perspective, helper_wq was the only singlethreaded > non-freezeable workqueue. I think Eric's patch is what you need. We should _not_ freeze kthreadd(), we need kthread_create() after freezing. Now it doesn't depend on workqueues, we can freeze them all, single-thread or not. I like this patch. Oleg.