]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
xfs: fix remount rw with unrecognized options
authorChristoph Hellwig <hch@lst.de>
Sun, 12 Oct 2008 12:30:44 +0000 (14:30 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 22 Oct 2008 21:21:10 +0000 (14:21 -0700)
commitc068663ae65e507814545b59a8e2090f48a85613
tree409c16d91fe3c87f83d30bba4c815969fe92b87b
parent72da00bb9053a46e338496def4225febb5137ed3
xfs: fix remount rw with unrecognized options

commit 6c5e51dae2c37127e00be392f40842e08077e96a upstream

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 <hch@lst.de>
Acked-by: Eric Sandeen <sandeen@sandeen.net>
Signed-off-by: Timothy Shimmin <tes@sgi.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/xfs/linux-2.6/xfs_super.c