Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756071AbYAYRfh (ORCPT ); Fri, 25 Jan 2008 12:35:37 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753880AbYAYRf2 (ORCPT ); Fri, 25 Jan 2008 12:35:28 -0500 Received: from e2.ny.us.ibm.com ([32.97.182.142]:37519 "EHLO e2.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753687AbYAYRf1 (ORCPT ); Fri, 25 Jan 2008 12:35:27 -0500 Subject: Re: [patch 12/26] mount options: fix ext4 From: Mingming Cao Reply-To: cmm@us.ibm.com To: Miklos Szeredi Cc: akpm@linux-foundation.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, "Theodore Ts'o" In-Reply-To: <20080124193432.492168716@szeredi.hu> References: <20080124193341.166753833@szeredi.hu> <20080124193432.492168716@szeredi.hu> Content-Type: text/plain Organization: IBM Linux Technology Center Date: Fri, 25 Jan 2008 09:35:02 -0800 Message-Id: <1201282502.4068.2.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.8.0 (2.8.0-33.el5) Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1150 Lines: 36 On Thu, 2008-01-24 at 20:33 +0100, Miklos Szeredi wrote: > plain text document attachment (ext4_opts.patch) > From: Miklos Szeredi > > Add stripe= option to /proc/mounts for ext4 filesystems. > > Signed-off-by: Miklos Szeredi > --- > > Index: linux/fs/ext4/super.c > =================================================================== > --- linux.orig/fs/ext4/super.c 2008-01-23 12:57:07.000000000 +0100 > +++ linux/fs/ext4/super.c 2008-01-23 21:43:51.000000000 +0100 > @@ -742,7 +742,8 @@ static int ext4_show_options(struct seq_ > seq_puts(seq, ",nomballoc"); > if (!test_opt(sb, DELALLOC)) > seq_puts(seq, ",nodelalloc"); > - > + if (sbi->s_stripe) > + seq_printf(seq, ",stripe=%lu", sbi->s_stripe); > > /* > * journal mode get enabled in different ways > Added to ext4 patch queue. Thanks! http://repo.or.cz/w/ext4-patch-queue.git Mingming -- 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/