From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: with ECARTIS (v1.0.0; list xfs); Thu, 28 Aug 2008 16:17:16 -0700 (PDT) Received: from cuda.sgi.com (cuda1.sgi.com [192.48.168.28]) by oss.sgi.com (8.12.11.20060308/8.12.11/SuSE Linux 0.7) with ESMTP id m7SNHCaa029678 for ; Thu, 28 Aug 2008 16:17:12 -0700 Received: from verein.lst.de (localhost [127.0.0.1]) by cuda.sgi.com (Spam Firewall) with ESMTP id 631F71206750 for ; Thu, 28 Aug 2008 16:18:36 -0700 (PDT) Received: from verein.lst.de (verein.lst.de [213.95.11.210]) by cuda.sgi.com with ESMTP id Wws0LElGyx6gZmxK for ; Thu, 28 Aug 2008 16:18:36 -0700 (PDT) Received: from verein.lst.de (localhost [127.0.0.1]) by verein.lst.de (8.12.3/8.12.3/Debian-7.1) with ESMTP id m7SNIaIF019869 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Fri, 29 Aug 2008 01:18:37 +0200 Received: (from hch@localhost) by verein.lst.de (8.12.3/8.12.3/Debian-6.6) id m7SNIac3019867 for xfs@oss.sgi.com; Fri, 29 Aug 2008 01:18:36 +0200 Date: Fri, 29 Aug 2008 01:18:36 +0200 From: Christoph Hellwig Subject: Re: [PATCH 3/4] fix the noquota mount option Message-ID: <20080828231836.GC19757@lst.de> References: <20080525190750.GC13372@lst.de> <20080723080514.GB3417@lst.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080723080514.GB3417@lst.de> Sender: xfs-bounce@oss.sgi.com Errors-to: xfs-bounce@oss.sgi.com List-Id: xfs To: xfs@oss.sgi.com ping^2? On Wed, Jul 23, 2008 at 10:05:14AM +0200, Christoph Hellwig wrote: > ping? > > On Sun, May 25, 2008 at 09:07:50PM +0200, Christoph Hellwig wrote: > > Noquota should clear all mount options, and not just user and group > > quota. Probably doesn't matter very much in real life. > > > > > > Signed-off-by: Christoph Hellwig > > > > Index: linux-2.6-xfs/fs/xfs/linux-2.6/xfs_super.c > > =================================================================== > > --- linux-2.6-xfs.orig/fs/xfs/linux-2.6/xfs_super.c 2008-05-25 20:57:33.000000000 +0200 > > +++ linux-2.6-xfs/fs/xfs/linux-2.6/xfs_super.c 2008-05-25 20:58:52.000000000 +0200 > > @@ -337,6 +337,7 @@ xfs_parseargs( > > } else if (!strcmp(this_char, MNTOPT_NOQUOTA)) { > > mp->m_qflags &= ~(XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE | > > XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE | > > + XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE | > > XFS_UQUOTA_ENFD | XFS_OQUOTA_ENFD); > > } else if (!strcmp(this_char, MNTOPT_QUOTA) || > > !strcmp(this_char, MNTOPT_UQUOTA) || > ---end quoted text--- ---end quoted text---