[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAAYFAvoAKEgTCrWRLU6wuLkm5cH8mS-xg-TU7_WfeKsxRWC16w@mail.gmail.com>
Date: Mon, 11 Feb 2013 20:23:44 +0530
From: Rajat Sharma <fs.rajat@...il.com>
To: Al Viro <viro@...iv.linux.org.uk>
Cc: linux-fsdevel@...r.kernel.org,
linux-kernel-mail <linux-kernel@...r.kernel.org>
Subject: Re: query about create_mnt_ns
Thanks :)
On Mon, Feb 11, 2013 at 7:40 PM, Al Viro <viro@...iv.linux.org.uk> wrote:
> 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 ;-)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists