diff options
author | Mikulas Patocka <mikulas@twibright.com> | 2016-05-24 16:51:27 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2016-05-25 11:43:37 -0400 |
commit | b9d8905e4a751e2cdc0fb474856b7183c594dcc6 (patch) | |
tree | 655b4c0ad4807cd47bf845522bece22d8da9bdff /fs | |
parent | 7888824b0b1c9c3753d2aedf1d00e7a1c20c18af (diff) |
reiserfs: check kstrdup failure
Check out-of-memory failure of the kstrdup option. Note that the argument
"arg" may be NULL (in that case kstrup returns NULL), so out of memory
condition happened if arg was non-NULL and kstrdup returned NULL.
The patch also changes the call to replace_mount_options - if we didn't
pass any filesystem-specific options, we don't call replace_mount_options
(thus we don't erase existing reported options).
Note that to properly report options after remount, the reiserfs
filesystem should implement the show_options method. Without the
show_options method, options changed with remount replace existing
options.
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs')
-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: |