Skip to content

Commit

Permalink
reiserfs: check kstrdup failure
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Jan Kara <[email protected]>
  • Loading branch information
mikulas-patocka authored and jankara committed May 25, 2016
1 parent 7888824 commit b9d8905
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions fs/reiserfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1393,14 +1393,18 @@ static int reiserfs_remount(struct super_block *s, int *mount_flags, char *arg)
unsigned long safe_mask = 0;
unsigned int commit_max_age = (unsigned int)-1;
struct reiserfs_journal *journal = SB_JOURNAL(s);
char *new_opts = kstrdup(arg, GFP_KERNEL);
char *new_opts;
int err;
char *qf_names[REISERFS_MAXQUOTAS];
unsigned int qfmt = 0;
#ifdef CONFIG_QUOTA
int i;
#endif

new_opts = kstrdup(arg, GFP_KERNEL);
if (arg && !new_opts)
return -ENOMEM;

sync_filesystem(s);
reiserfs_write_lock(s);

Expand Down Expand Up @@ -1546,7 +1550,8 @@ static int reiserfs_remount(struct super_block *s, int *mount_flags, char *arg)
}

out_ok_unlocked:
replace_mount_options(s, new_opts);
if (new_opts)
replace_mount_options(s, new_opts);
return 0;

out_err_unlock:
Expand Down

0 comments on commit b9d8905

Please sign in to comment.