mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
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>
This commit is contained in:
parent
348e1e04b5
commit
92587216f8
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user