From mboxrd@z Thu Jan 1 00:00:00 1970 From: Shaya Potter Subject: Re: [RFC][PATCH 0/15] VFS based Union Mount Date: Tue, 17 Apr 2007 10:35:50 -0400 Message-ID: <4624DB46.6040400@cs.columbia.edu> References: <20070417131459.GA4001@in.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, Jan Blunck To: bharata@linux.vnet.ibm.com Return-path: Received: from cs.columbia.edu ([128.59.16.20]:58907 "EHLO cs.columbia.edu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754415AbXDQOhP (ORCPT ); Tue, 17 Apr 2007 10:37:15 -0400 In-Reply-To: <20070417131459.GA4001@in.ibm.com> Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org Bharata B Rao wrote: > Hi, > > Here is an attempt towards vfs based union mount implementation. > Union mount provides the filesytem namespace unification feature. > Unlike the traditional mounts which hide the contents of the mount point, > the union mount presents the merged view of the mount point and the > mounted filesytem. does this approach allow one to add directories to the union and have it behave normally. namely when imagine one has the situation dir-b dir-a/ (contains file foo) if one unions this and deletes foo, that will create a whiteout entry in dir-a now, what happens if one does dir-c dir-b (now contains whiteout, from previous union). dir-a (contains file foo) will one see foo or not. i.e. are whiteouts only looked for in the topmost dir, or in every dir?