summaryrefslogtreecommitdiff
path: root/fs/ext3
diff options
context:
space:
mode:
authorJosef Bacik <jbacik@redhat.com>2008-03-04 22:29:43 (GMT)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-03-05 00:35:18 (GMT)
commit92587216f8bdf74432ada8a9a1a7caf4c135cf42 (patch)
tree71f122be9098a33e4018d0ad0ae98cbef368cabd /fs/ext3
parent348e1e04b5229a481891699ce86da009b793f29e (diff)
downloadlinux-fsl-qoriq-92587216f8bdf74432ada8a9a1a7caf4c135cf42.tar.xz
ext3: fix mount option parsing
The "resize" option won't be noticed as it comes after the NULL option, so if you try to mount (or in this case remount) with that option it won't be recognized. Signed-off-by: Josef Bacik <jbacik@redhat.com> Cc: <linux-ext4@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ext3')
-rw-r--r--fs/ext3/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c
index 18769cc..ad53606 100644
--- a/fs/ext3/super.c
+++ b/fs/ext3/super.c
@@ -806,8 +806,8 @@ static match_table_t tokens = {
{Opt_quota, "quota"},
{Opt_usrquota, "usrquota"},
{Opt_barrier, "barrier=%u"},
- {Opt_err, NULL},
{Opt_resize, "resize"},
+ {Opt_err, NULL},
};
static ext3_fsblk_t get_sb_block(void **data)