diff options
| -rw-r--r-- | fs/reiserfs/super.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c index b8f2d1e8c645..c72c16c5a60f 100644 --- a/fs/reiserfs/super.c +++ b/fs/reiserfs/super.c | |||
| @@ -1393,7 +1393,7 @@ static int reiserfs_remount(struct super_block *s, int *mount_flags, char *arg) | |||
| 1393 | unsigned long safe_mask = 0; | 1393 | unsigned long safe_mask = 0; |
| 1394 | unsigned int commit_max_age = (unsigned int)-1; | 1394 | unsigned int commit_max_age = (unsigned int)-1; |
| 1395 | struct reiserfs_journal *journal = SB_JOURNAL(s); | 1395 | struct reiserfs_journal *journal = SB_JOURNAL(s); |
| 1396 | char *new_opts = kstrdup(arg, GFP_KERNEL); | 1396 | char *new_opts; |
| 1397 | int err; | 1397 | int err; |
| 1398 | char *qf_names[REISERFS_MAXQUOTAS]; | 1398 | char *qf_names[REISERFS_MAXQUOTAS]; |
| 1399 | unsigned int qfmt = 0; | 1399 | unsigned int qfmt = 0; |
| @@ -1401,6 +1401,10 @@ static int reiserfs_remount(struct super_block *s, int *mount_flags, char *arg) | |||
| 1401 | int i; | 1401 | int i; |
| 1402 | #endif | 1402 | #endif |
| 1403 | 1403 | ||
| 1404 | new_opts = kstrdup(arg, GFP_KERNEL); | ||
| 1405 | if (arg && !new_opts) | ||
| 1406 | return -ENOMEM; | ||
| 1407 | |||
| 1404 | sync_filesystem(s); | 1408 | sync_filesystem(s); |
| 1405 | reiserfs_write_lock(s); | 1409 | reiserfs_write_lock(s); |
| 1406 | 1410 | ||
| @@ -1546,7 +1550,8 @@ static int reiserfs_remount(struct super_block *s, int *mount_flags, char *arg) | |||
| 1546 | } | 1550 | } |
| 1547 | 1551 | ||
| 1548 | out_ok_unlocked: | 1552 | out_ok_unlocked: |
| 1549 | replace_mount_options(s, new_opts); | 1553 | if (new_opts) |
| 1554 | replace_mount_options(s, new_opts); | ||
| 1550 | return 0; | 1555 | return 0; |
| 1551 | 1556 | ||
| 1552 | out_err_unlock: | 1557 | out_err_unlock: |
