From mboxrd@z Thu Jan 1 00:00:00 1970 From: Al Viro Subject: Re: query about create_mnt_ns Date: Mon, 11 Feb 2013 14:10:28 +0000 Message-ID: <20130211141028.GJ4503@ZenIV.linux.org.uk> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: linux-fsdevel@vger.kernel.org, linux-kernel-mail To: Rajat Sharma Return-path: Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Mon, Feb 11, 2013 at 05:44:29PM +0530, Rajat Sharma wrote: > Hi, > > I was looking at implementation of init_mount_tree() function and > found a discrepancy in list manipulation of mnt_namsespace and > vfsmount across kernel version 2.6.30. Up till kernel version > 2.6.30.x, vfsmount structure was added to the list headed by > mnt_namespace structure just allocated: > > list_add(&mnt->mnt_list, &ns->list); > > Beyond that with the introduction of function create_mnt_ns(), it does > reverse of previous behavior: > > list_add(&new_ns->list, &mnt->mnt_list); > > i.e. it is adding new mnt_namespace to the vfsmount list. Is this the > expected behavior? i.e. do we want to maintain list of namespaces per > mount? Please let me know if I am missing something here. The fact that if A and B are both empty, list_add(A, B) and list_add(B, A) will do exactly the same thing ;-)