From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753606AbXDKTW0 (ORCPT ); Wed, 11 Apr 2007 15:22:26 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753635AbXDKTW0 (ORCPT ); Wed, 11 Apr 2007 15:22:26 -0400 Received: from smtp.osdl.org ([65.172.181.24]:57517 "EHLO smtp.osdl.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752997AbXDKTWY (ORCPT ); Wed, 11 Apr 2007 15:22:24 -0400 Date: Wed, 11 Apr 2007 12:21:24 -0700 From: Andrew Morton To: ebiederm@xmission.com (Eric W. Biederman) Cc: Oleg Nesterov , Davide Libenzi , Jan Engelhardt , Ingo Molnar , Linus Torvalds , Robin Holt , Roland McGrath , "Serge E. Hallyn" , linux-kernel@vger.kernel.org, "Rafael J. Wysocki" , Gautham R Shenoy Subject: Re: [PATCH] kthread: Don't depend on work queues (take 2) Message-Id: <20070411122124.a7ce6705.akpm@linux-foundation.org> In-Reply-To: References: <20070410185133.GA104@tv-sign.ru> <20070411000316.52f2551e.akpm@linux-foundation.org> X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.6; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 11 Apr 2007 12:27:59 -0600 ebiederm@xmission.com (Eric W. Biederman) wrote: > + strcpy(tsk->comm, "kthreadd"); We have this dopey set_task_comm() thing which is there to avoid races when userspace is looking at this task's name via /proc. It obviously doesn't matter in this case, but I suppose one should set a good example. I'll make that change.