ext4: fix mount option parsing From: Josef Bacik 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. Cc: Signed-off-by: Josef Bacik Signed-off-by: Andrew Morton Signed-off-by: "Theodore Ts'o" --- fs/ext4/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.25-rc3/fs/ext4/super.c =================================================================== --- linux-2.6.25-rc3.orig/fs/ext4/super.c 2008-03-03 17:23:45.000000000 -0800 +++ linux-2.6.25-rc3/fs/ext4/super.c 2008-03-03 17:23:50.000000000 -0800 @@ -945,8 +945,8 @@ static match_table_t tokens = { {Opt_mballoc, "mballoc"}, {Opt_nomballoc, "nomballoc"}, {Opt_stripe, "stripe=%u"}, - {Opt_err, NULL}, {Opt_resize, "resize"}, + {Opt_err, NULL}, }; static ext4_fsblk_t get_sb_block(void **data)