mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
btrfs: cleanup unnecessary string dup in btrfs_parse_options()
Long ago, commit edf24abe51
("btrfs: sanity mount option parsing and
early mount code") split the btrfs_parse_options() into two parts
(btrfs_parse_early_options() and btrfs_parse_options()). As a result,
btrfs_parse_optins no longer gets called twice and is the last one to
parse mount option string. Therefore there is no need to dup it.
Signed-off-by: Tomohiro Misono <misono.tomohiro@jp.fujitsu.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
203e02d934
commit
e215772cd2
@ -414,7 +414,7 @@ int btrfs_parse_options(struct btrfs_fs_info *info, char *options,
|
|||||||
unsigned long new_flags)
|
unsigned long new_flags)
|
||||||
{
|
{
|
||||||
substring_t args[MAX_OPT_ARGS];
|
substring_t args[MAX_OPT_ARGS];
|
||||||
char *p, *num, *orig = NULL;
|
char *p, *num;
|
||||||
u64 cache_gen;
|
u64 cache_gen;
|
||||||
int intarg;
|
int intarg;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
@ -437,16 +437,6 @@ int btrfs_parse_options(struct btrfs_fs_info *info, char *options,
|
|||||||
if (!options)
|
if (!options)
|
||||||
goto check;
|
goto check;
|
||||||
|
|
||||||
/*
|
|
||||||
* strsep changes the string, duplicate it because parse_options
|
|
||||||
* gets called twice
|
|
||||||
*/
|
|
||||||
options = kstrdup(options, GFP_KERNEL);
|
|
||||||
if (!options)
|
|
||||||
return -ENOMEM;
|
|
||||||
|
|
||||||
orig = options;
|
|
||||||
|
|
||||||
while ((p = strsep(&options, ",")) != NULL) {
|
while ((p = strsep(&options, ",")) != NULL) {
|
||||||
int token;
|
int token;
|
||||||
if (!*p)
|
if (!*p)
|
||||||
@ -887,7 +877,6 @@ out:
|
|||||||
btrfs_info(info, "disk space caching is enabled");
|
btrfs_info(info, "disk space caching is enabled");
|
||||||
if (!ret && btrfs_test_opt(info, FREE_SPACE_TREE))
|
if (!ret && btrfs_test_opt(info, FREE_SPACE_TREE))
|
||||||
btrfs_info(info, "using free space tree");
|
btrfs_info(info, "using free space tree");
|
||||||
kfree(orig);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user