Check whether lvm dumpconfig --mergedconfig is used only
with --type current (where we're merging current config and
the config supplied on command line). With other types
the config was merged, but it was thrown away since we're
generating other type of config anyway. This lead to a memleak.
Error out if --mergedconfig is used with anything else than
--type current (or without specifying --type in which case
the --type current is used by default).
Version 2.02.106 -
====================================
+ Don't allow --mergedconfig without --type current in dumpconfig. Fix memleak.
Make global/lvdisplay_shows_full_device_path lvm.conf setting profilable.
Make global/{units|si_unit_consistency|suffix} lvm.conf setting profilable.
Validate minimal chunk size for snapshot COW volume in lvconvert.
"no effect with --type current");
return EINVALID_CMD_LINE;
}
+ } else if (arg_count(cmd, mergedconfig_ARG)) {
+ log_error("--mergedconfig has no effect without --type current");
+ return EINVALID_CMD_LINE;
}
if (!_get_vsn(cmd, &tree_spec.version))