Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754981Ab1DOBHg (ORCPT ); Thu, 14 Apr 2011 21:07:36 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.183]:54374 "EHLO ironport2-out.pppoe.ca" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752167Ab1DOBHf (ORCPT ); Thu, 14 Apr 2011 21:07:35 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApIBAGSZp01Ld/sX/2dsb2JhbAAMhEPVR5FAgSmDTXgE X-IronPort-AV: E=Sophos;i="4.64,214,1301889600"; d="scan'208";a="106470993" Message-ID: <4DA79A55.4040507@teksavvy.com> Date: Thu, 14 Apr 2011 21:07:33 -0400 From: Mark Lord User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.2.15) Gecko/20110303 Thunderbird/3.1.9 MIME-Version: 1.0 To: Milton Miller CC: linux-kernel@vger.kernel.org, linux-ext4@vger.kernel.org, Joel Becker , "Ted Ts'o" , Andreas Dilger , John Stoffel , Ric Wheeler Subject: Re: [PATCH] ext4: register ext2 and ext3 alias after ext4 References: <4DA48AF4.5080803@teksavvy.com> <20110413004938.GE3682@thunk.org> <4DA5ADA6.5060301@teksavvy.com> <5A35771F-49B6-491E-B012-DBE68907E382@mit.edu> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2245 Lines: 56 On 11-04-14 11:41 AM, Milton Miller wrote: > The intent of CONFIG_EXT4_USE_FOR_EXT23 is to provide an alias so > that the ext4 module is sufficient even if user space calls out ext2. > However, it currently registers the alias names before registering ext4. > This means they show up first in /proc/filesystems and ext3 and ext4 > formatted file systems show up in the mount list as ext4. Shouldn't that say: This means they show up first in /proc/filesystems, causing ext3 and ext4 formatted file systems to show up in the mount list as ext2. Thanks. Other than that, it all looks good here with ext2 and ext4 file systems. I didn't try an ext3 filesystem, but with it being between the other two, I expect it to also be fine. > Register the filesystem aliases after ext4 so they show as ext4 until the > filesystems is filtered. This will avoid users or tools configuring a > kernel with just ext2 and wondering why there system broke. Also register > in the same order as listed in fs/Makefile. > > Signed-off-by: Milton Miller > --- > > Untested but simple code movement. Mark will you please test? > > Is it safe to initialize ext4_li_info and ext4_li_mtx after we register > the filesystem? What keeps the init after the first call to mount > a filesystem? > > I checked unregister_filesystem and it is safe when the file system > type is and is not registered. > > Index: work.git/fs/ext4/super.c > =================================================================== > --- work.git.orig/fs/ext4/super.c 2011-04-14 09:26:43.250066794 -0500 > +++ work.git/fs/ext4/super.c 2011-04-14 09:29:53.220061521 -0500 > @@ -4898,11 +4898,11 @@ static int __init ext4_init_fs(void) > err = init_inodecache(); > if (err) > goto out1; > - register_as_ext2(); > - register_as_ext3(); > err = register_filesystem(&ext4_fs_type); > if (err) > goto out; > + register_as_ext3(); > + register_as_ext2(); > > ext4_li_info = NULL; > mutex_init(&ext4_li_mtx); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/