From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751919AbaHIObW (ORCPT ); Sat, 9 Aug 2014 10:31:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36243 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751892AbaHIObS (ORCPT ); Sat, 9 Aug 2014 10:31:18 -0400 Date: Sat, 9 Aug 2014 16:28:50 +0200 From: Oleg Nesterov To: Cyrill Gorcunov Cc: Alexander Viro , Alexey Dobriyan , Andrew Morton , David Howells , "David S. Miller" , "Eric W. Biederman" , "Kirill A. Shutemov" , Peter Zijlstra , Sasha Levin , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [RFC PATCH 1/5] proc: intoduce proc_inode->pid_entry and is_tgid_pid_entry() Message-ID: <20140809142850.GB16457@redhat.com> References: <20140808185732.GA760@redhat.com> <20140808185747.GA774@redhat.com> <20140808200553.GB20553@moon> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140808200553.GB20553@moon> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 08/09, Cyrill Gorcunov wrote: > > On Fri, Aug 08, 2014 at 08:57:47PM +0200, Oleg Nesterov wrote: > ... > > +++ b/fs/proc/inode.c > > @@ -73,6 +73,7 @@ static struct inode *proc_alloc_inode(struct super_block *sb) > > ei->pde = NULL; > > ei->sysctl = NULL; > > ei->sysctl_entry = NULL; > > + ei->pid_entry = NULL; > > ei->ns.ns = NULL; > > ei->ns.ns_ops = NULL; > > inode = &ei->vfs_inode; > > Hi Oleg, sorry for not responding to previous emails, will try to review this > things tomorrow (from a glance looks quite good!). Btw, this moment strike my > eyes -- why don't we use kmem_cache_zalloc here but do assign nils again and > again, maybe worth to address as well? Probably because this doesn't make sense to nullify proc_inode->vfs_inode, it will be reinitialized at least by inode_init_always() anyway. Oleg.