From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758309AbYGUIo4 (ORCPT ); Mon, 21 Jul 2008 04:44:56 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755371AbYGUIot (ORCPT ); Mon, 21 Jul 2008 04:44:49 -0400 Received: from nf-out-0910.google.com ([64.233.182.189]:29435 "EHLO nf-out-0910.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755035AbYGUIos (ORCPT ); Mon, 21 Jul 2008 04:44:48 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=J7ji6ysM0L2DePOGHHqgStH6hb/jSzcuy9OT+4kzsfvgWmjd38zxGxlR/q8F4FnbKh 2ORiB0IMAmHSy8f1rpfgakfFfKZehBFVUKxBIjV2T2L1QM0FWHE1pxCB1iNTD6OlYwq8 G3NLOiK1ctbaltXdew4jjnGmBQD18pqZni54A= Date: Mon, 21 Jul 2008 12:44:43 +0400 From: Cyrill Gorcunov To: Li Zefan Cc: Al Viro , Andrew Morton , LKML Subject: Re: [PATCH] vfs: use kstrdup() Message-ID: <20080721084443.GD20011@lenovo> References: <4881BEF4.2020201@cn.fujitsu.com> <20080719131317.GA7027@asus> <20080719131909.GB7027@asus> <20080721052713.GY28946@ZenIV.linux.org.uk> <48842CDB.1090009@cn.fujitsu.com> <20080721070346.GA28946@ZenIV.linux.org.uk> <20080721080427.GC6662@lenovo> <488448A1.3030608@cn.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <488448A1.3030608@cn.fujitsu.com> User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org [Li Zefan - Mon, Jul 21, 2008 at 04:28:17PM +0800] | Cyrill Gorcunov wrote: | > [Al Viro - Mon, Jul 21, 2008 at 08:03:46AM +0100] | > | | > [...] | > | The right thing here is to consider failing allocation of ->mnt_devname | > | as failure of the entire alloc. | > | | > | > Al, what about the patch below? I'm not sure if Li's version already | > in someone tree so it's from-the-scratch. If this ok, i think Li could | > update his version and resend. | > | | It's already in -mm tree, but Andrew can drop it and queue the new one. | | > - Cyrill - | > --- | > | > Index: linux-2.6.git/fs/namespace.c | > =================================================================== | > --- linux-2.6.git.orig/fs/namespace.c 2008-07-21 11:34:37.000000000 +0400 | > +++ linux-2.6.git/fs/namespace.c 2008-07-21 12:00:01.000000000 +0400 | > @@ -112,9 +112,13 @@ struct vfsmount *alloc_vfsmnt(const char | > int err; | > | > err = mnt_alloc_id(mnt); | > - if (err) { | > - kmem_cache_free(mnt_cache, mnt); | > - return NULL; | > + if (err) | > + goto err; | > + | > + if (name) { | > + mnt->mnt_devname = kstrdup(name, GFP_KERNEL); | > + if (!mnt->mnt_devname) | | should call mnt_free_id() here. | | > + goto err; | > } | > | > atomic_set(&mnt->mnt_count, 1); | > @@ -127,16 +131,12 @@ struct vfsmount *alloc_vfsmnt(const char | > INIT_LIST_HEAD(&mnt->mnt_slave_list); | > INIT_LIST_HEAD(&mnt->mnt_slave); | > atomic_set(&mnt->__mnt_writers, 0); | > - if (name) { | > - int size = strlen(name) + 1; | > - char *newname = kmalloc(size, GFP_KERNEL); | > - if (newname) { | > - memcpy(newname, name, size); | > - mnt->mnt_devname = newname; | > - } | > - } | > } | > return mnt; | > + | > +err: | > + kmem_cache_free(mnt_cache, mnt); | > + return NULL; | > } | > | > /* | > | > | well, as only Al find new version more or less correct we could update yours. - Cyrill -