From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Bottomley Subject: Re: [PATCH] remove name length check in a workqueue Date: Wed, 10 Aug 2005 12:24:32 -0500 Message-ID: <1123694672.5134.11.camel@mulgrave> References: <1123683544.5093.4.camel@mulgrave> <20050810100523.0075d4e8.akpm@osdl.org> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: Received: from stat16.steeleye.com ([209.192.50.48]:39831 "EHLO hancock.sc.steeleye.com") by vger.kernel.org with ESMTP id S965223AbVHJRYw (ORCPT ); Wed, 10 Aug 2005 13:24:52 -0400 In-Reply-To: <20050810100523.0075d4e8.akpm@osdl.org> Sender: linux-scsi-owner@vger.kernel.org List-Id: linux-scsi@vger.kernel.org To: Andrew Morton Cc: Ingo Molnar , Linux Kernel , SCSI Mailing List On Wed, 2005-08-10 at 10:05 -0700, Andrew Morton wrote: > Ingo Molnar wrote: > > yeah ... cannot remember why i have done it originally :-| > Might it be to do with sizeof(task_struct.comm)? But that's 16 bytes not 10; and anyway, it doesn't have to be unique; set_task_comm just does a strlcpy from the name, so it will be truncated (same as for a binary with > 15 character name). James