]> err.no Git - linux-2.6/commitdiff
ext4: fix mount option parsing
authorJosef Bacik <jbacik@redhat.com>
Wed, 30 Apr 2008 02:05:28 +0000 (22:05 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 30 Apr 2008 02:05:28 +0000 (22:05 -0400)
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: <linux-ext4@vger.kernel.org>
Signed-off-by: Josef Bacik <jbacik@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/super.c

index 425f42778efa81d0c566056cd6b1c8faf5c1a9d8..9d2d9a7fdea13fd8824a49ee89ff8f495b8881b4 100644 (file)
@@ -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)