X-Spam-Checker-Version: SpamAssassin 3.3.0-r574664 (2007-09-11) on oss.sgi.com X-Spam-Level: X-Spam-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.0-r574664 Received: from relay.sgi.com (netops-testserver-3.corp.sgi.com [192.26.57.72]) by oss.sgi.com (8.12.11.20060308/8.12.11/SuSE Linux 0.7) with ESMTP id m9G0Rnmc011382 for ; Wed, 15 Oct 2008 17:27:50 -0700 Received: from larry.melbourne.sgi.com (larry.melbourne.sgi.com [134.14.52.130]) by netops-testserver-3.corp.sgi.com (Postfix) with SMTP id E2C44908A2; Wed, 15 Oct 2008 17:29:30 -0700 (PDT) Received: from chook.melbourne.sgi.com (chook.melbourne.sgi.com [134.14.54.237]) by larry.melbourne.sgi.com (950413.SGI.8.6.12/950213.SGI.AUTOCF) via ESMTP id LAA19088; Thu, 16 Oct 2008 11:29:27 +1100 Received: by chook.melbourne.sgi.com (Postfix, from userid 16305) id D912558FA22B; Thu, 16 Oct 2008 11:29:26 +1100 (EST) Date: Thu, 16 Oct 2008 11:29:26 +1100 To: stable@kernel.org Cc: linux-kernel@vger.kernel.org, xfs@oss.sgi.com Subject: [PATCH] XFS fix remount rw with unrecognized options User-Agent: nail 11.25 7/29/05 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20081016002926.D912558FA22B@chook.melbourne.sgi.com> From: tes@sgi.com (Tim Shimmin) Resending as I mangled sending the mail from home last time. Sorry. Please include the following patch for 2.6.27.1 stable release as suggested by Christoph Hellwig and Eric Sandeen. It fixes a regression in the recent remount recoding where remounting say from ro to rw allows the xfs flags to be out of sync with the vfs flags, resulting in failures for some programs such as touch (which end up calling xfs_setattr). The fix is a very minor and clear. Thanks, Tim. Date: Sun, 12 Oct 2008 14:30:44 +0200 From: Christoph Hellwig To: xfs@oss.sgi.com Subject: [PATCH] fix remount rw with unrecognized options When we skip unrecognized options in xfs_fs_remount we should just break out of the switch and not return because otherwise we may skip clearing the xfs-internal read-only flag. This will only show up on some operations like touch because most read-only checks are done by the VFS which thinks this filesystem is r/w. Eventually we should replace the XFS read-only flag with a helper that always checks the VFS flag to make sure they can never get out of sync. Bug reported and fix verified by Marcel Beister on #xfs. Bug fix verified by updated xfstests/189. Signed-off-by: Christoph Hellwig Acked-by: Eric Sandeen Signed-off-by: Timothy Shimmin Index: mainline/fs/xfs/linux-2.6/xfs_super.c =================================================================== --- mainline.orig/fs/xfs/linux-2.6/xfs_super.c 2008-10-15 17:59:26.542652847 +1100 +++ mainline/fs/xfs/linux-2.6/xfs_super.c 2008-10-15 17:59:45.376217172 +1100 @@ -1323,7 +1323,7 @@ xfs_fs_remount( "XFS: mount option \"%s\" not supported for remount\n", p); return -EINVAL; #else - return 0; + break; #endif } }