From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bharata B Rao Subject: [RFC][PATCH 0/14] VFS based Union Mount(v1) Date: Mon, 14 May 2007 15:07:22 +0530 Message-ID: <20070514093722.GB4139@in.ibm.com> Reply-To: bharata@linux.vnet.ibm.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: linux-fsdevel@vger.kernel.org, Jan Blunck To: linux-kernel@vger.kernel.org Return-path: Received: from e32.co.us.ibm.com ([32.97.110.150]:37896 "EHLO e32.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755701AbXENJaP (ORCPT ); Mon, 14 May 2007 05:30:15 -0400 Content-Disposition: inline Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org Here is another post of 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. These patches were originally by Jan Blunck. The current patches are for 2.6.21-mm1. The main change from the previous post is a different implementation of union mount readdir which is heavily inspired by the unionfs' implementation. The earlier version had two serious drawbacks: It worked only for filesystems which had flat file directories and it used to build and destroy readdir cache for every readdir() call. This version has addressed both of these shortcomings. The code is still in an experimental stage and the intention of posting this now is to get some initial feedback about the design and the future directions about how this should be taken forward. You can find more details about union mount in the documentation included in the patchset. Kindly review and let us know your comments. Regards, Bharata.