mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
lvmconfig: add --sinceversion for --type new
Just for convenience to display all new configuration settings introduced since given version (before, there was only --atversion to display settings introduced in concrete version). For example: $ lvmconfig --type new --sinceversion 2.2.120 allocation { # cache_mode="writethrough" # cache_settings { # } } global { use_lvmlockd=0 # lvmlockd_lock_retries=3 # sanlock_lv_extend=256 use_lvmpolld=1 } activation { } # report { # compact_output_cols="" # time_format="%Y-%m-%d %T %z" # } local { # host_id=0 }
This commit is contained in:
parent
66c7fa4a44
commit
1ea8afd3ca
@ -1,5 +1,6 @@
|
|||||||
Version 2.02.136 -
|
Version 2.02.136 -
|
||||||
=====================================
|
=====================================
|
||||||
|
Add new --sinceversion option for lvmconfig --type new.
|
||||||
Fix inactive table loaded for wrapping thin-pool when resizing it.
|
Fix inactive table loaded for wrapping thin-pool when resizing it.
|
||||||
Extend the list of ignored libraries when locking memory.
|
Extend the list of ignored libraries when locking memory.
|
||||||
|
|
||||||
|
@ -1996,6 +1996,11 @@ static int _should_skip_def_node(struct config_def_tree_spec *spec, int section_
|
|||||||
_should_skip_deprecated_def_node(def, spec))
|
_should_skip_deprecated_def_node(def, spec))
|
||||||
return 1;
|
return 1;
|
||||||
break;
|
break;
|
||||||
|
case CFG_DEF_TREE_NEW_SINCE:
|
||||||
|
if ((def->since_version < spec->version) ||
|
||||||
|
_should_skip_deprecated_def_node(def, spec))
|
||||||
|
return 1;
|
||||||
|
break;
|
||||||
case CFG_DEF_TREE_PROFILABLE:
|
case CFG_DEF_TREE_PROFILABLE:
|
||||||
/* fall through */
|
/* fall through */
|
||||||
case CFG_DEF_TREE_PROFILABLE_CMD:
|
case CFG_DEF_TREE_PROFILABLE_CMD:
|
||||||
|
@ -146,6 +146,7 @@ typedef enum {
|
|||||||
CFG_DEF_TREE_FULL, /* CURRENT + MISSING, the tree actually used within execution */
|
CFG_DEF_TREE_FULL, /* CURRENT + MISSING, the tree actually used within execution */
|
||||||
CFG_DEF_TREE_DEFAULT, /* tree of all possible config nodes with default values */
|
CFG_DEF_TREE_DEFAULT, /* tree of all possible config nodes with default values */
|
||||||
CFG_DEF_TREE_NEW, /* tree of all new nodes that appeared in given version */
|
CFG_DEF_TREE_NEW, /* tree of all new nodes that appeared in given version */
|
||||||
|
CFG_DEF_TREE_NEW_SINCE, /* tree of all new nodes that appeared since given version */
|
||||||
CFG_DEF_TREE_PROFILABLE, /* tree of all nodes that are customizable by profiles */
|
CFG_DEF_TREE_PROFILABLE, /* tree of all nodes that are customizable by profiles */
|
||||||
CFG_DEF_TREE_PROFILABLE_CMD, /* tree of all nodes that are customizable by command profiles (subset of PROFILABLE) */
|
CFG_DEF_TREE_PROFILABLE_CMD, /* tree of all nodes that are customizable by command profiles (subset of PROFILABLE) */
|
||||||
CFG_DEF_TREE_PROFILABLE_MDA, /* tree of all nodes that are customizable by metadata profiles (subset of PROFILABLE) */
|
CFG_DEF_TREE_PROFILABLE_MDA, /* tree of all nodes that are customizable by metadata profiles (subset of PROFILABLE) */
|
||||||
|
@ -9,6 +9,8 @@ lvmconfig, lvm dumpconfig, lvm config \(em Display LVM configuration
|
|||||||
.RI { current | default | diff | full | list | missing | new | profilable | profilable-command | profilable-metadata }
|
.RI { current | default | diff | full | list | missing | new | profilable | profilable-command | profilable-metadata }
|
||||||
.RB [ \-\-atversion
|
.RB [ \-\-atversion
|
||||||
.IR version ]
|
.IR version ]
|
||||||
|
.RB [ \-\---sinceversion
|
||||||
|
.IR version ]
|
||||||
.RB [ \-\-ignoreadvanced ]
|
.RB [ \-\-ignoreadvanced ]
|
||||||
.RB [ \-\-ignoreunsupported ]
|
.RB [ \-\-ignoreunsupported ]
|
||||||
.RB [ \-\-ignorelocal ]
|
.RB [ \-\-ignorelocal ]
|
||||||
@ -108,6 +110,13 @@ to display a configuration that a certain LVM version understands and
|
|||||||
which does not contain any newer settings for which LVM would
|
which does not contain any newer settings for which LVM would
|
||||||
issue a warning message when checking the configuration.
|
issue a warning message when checking the configuration.
|
||||||
|
|
||||||
|
.TP
|
||||||
|
.BI \-\-sinceversion " version"
|
||||||
|
Specify an LVM version in x.y.z format where x is the major version,
|
||||||
|
the y is the minor version and z is the patchlevel (e.g. 2.2.106).
|
||||||
|
This option is currently applicable only with \fB\-\-type new\fP
|
||||||
|
to display all configuration settings introduced since given version.
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
.B \-\-ignoreadvanced
|
.B \-\-ignoreadvanced
|
||||||
Exclude advanced configuration settings from the output.
|
Exclude advanced configuration settings from the output.
|
||||||
|
@ -101,6 +101,7 @@ arg(rows_ARG, '\0', "rows", NULL, 0)
|
|||||||
arg(segments_ARG, '\0', "segments", NULL, 0)
|
arg(segments_ARG, '\0', "segments", NULL, 0)
|
||||||
arg(separator_ARG, '\0', "separator", string_arg, 0)
|
arg(separator_ARG, '\0', "separator", string_arg, 0)
|
||||||
arg(shared_ARG, '\0', "shared", NULL, 0)
|
arg(shared_ARG, '\0', "shared", NULL, 0)
|
||||||
|
arg(sinceversion_ARG, '\0', "sinceversion", string_arg, 0)
|
||||||
arg(split_ARG, '\0', "split", NULL, 0)
|
arg(split_ARG, '\0', "split", NULL, 0)
|
||||||
arg(splitcache_ARG, '\0', "splitcache", NULL, 0)
|
arg(splitcache_ARG, '\0', "splitcache", NULL, 0)
|
||||||
arg(splitmirrors_ARG, '\0', "splitmirrors", int_arg, 0)
|
arg(splitmirrors_ARG, '\0', "splitmirrors", int_arg, 0)
|
||||||
|
@ -33,8 +33,8 @@ xx(config,
|
|||||||
PERMITTED_READ_ONLY | NO_METADATA_PROCESSING,
|
PERMITTED_READ_ONLY | NO_METADATA_PROCESSING,
|
||||||
"config\n"
|
"config\n"
|
||||||
"\t[-f|--file filename]\n"
|
"\t[-f|--file filename]\n"
|
||||||
"\t[--type {current|default|diff|full|list|missing|new|profilable|profilable-command|profilable-metadata}\n"
|
"\t[--type {current|default|diff|full|list|missing|new|profilable|profilable-command|profilable-metadata}]\n"
|
||||||
"\t[--atversion version]]\n"
|
"\t[--atversion version]\n"
|
||||||
"\t[--ignoreadvanced]\n"
|
"\t[--ignoreadvanced]\n"
|
||||||
"\t[--ignoreunsupported]\n"
|
"\t[--ignoreunsupported]\n"
|
||||||
"\t[--ignorelocal]\n"
|
"\t[--ignorelocal]\n"
|
||||||
@ -44,6 +44,7 @@ xx(config,
|
|||||||
"\t[--profile ProfileName]\n"
|
"\t[--profile ProfileName]\n"
|
||||||
"\t[--metadataprofile ProfileName]\n"
|
"\t[--metadataprofile ProfileName]\n"
|
||||||
"\t[--mergedconfig]\n"
|
"\t[--mergedconfig]\n"
|
||||||
|
"\t[--sinceversion version]\n"
|
||||||
"\t[--showdeprecated]\n"
|
"\t[--showdeprecated]\n"
|
||||||
"\t[--showunsupported]\n"
|
"\t[--showunsupported]\n"
|
||||||
"\t[--validate]\n"
|
"\t[--validate]\n"
|
||||||
@ -55,8 +56,8 @@ xx(config,
|
|||||||
"\t[ConfigurationNode...]\n",
|
"\t[ConfigurationNode...]\n",
|
||||||
atversion_ARG, configtype_ARG, file_ARG, ignoreadvanced_ARG,
|
atversion_ARG, configtype_ARG, file_ARG, ignoreadvanced_ARG,
|
||||||
ignoreunsupported_ARG, ignorelocal_ARG, list_ARG, mergedconfig_ARG, metadataprofile_ARG,
|
ignoreunsupported_ARG, ignorelocal_ARG, list_ARG, mergedconfig_ARG, metadataprofile_ARG,
|
||||||
showdeprecated_ARG, showunsupported_ARG, validate_ARG, withsummary_ARG, withcomments_ARG,
|
sinceversion_ARG, showdeprecated_ARG, showunsupported_ARG, validate_ARG, withsummary_ARG,
|
||||||
withspaces_ARG, unconfigured_ARG, withversions_ARG)
|
withcomments_ARG, withspaces_ARG, unconfigured_ARG, withversions_ARG)
|
||||||
|
|
||||||
xx(devtypes,
|
xx(devtypes,
|
||||||
"Display recognised built-in block device types",
|
"Display recognised built-in block device types",
|
||||||
@ -89,8 +90,8 @@ xx(dumpconfig,
|
|||||||
PERMITTED_READ_ONLY | NO_METADATA_PROCESSING,
|
PERMITTED_READ_ONLY | NO_METADATA_PROCESSING,
|
||||||
"dumpconfig\n"
|
"dumpconfig\n"
|
||||||
"\t[-f|--file filename]\n"
|
"\t[-f|--file filename]\n"
|
||||||
"\t[--type {current|default|diff|full|list|missing|new|profilable|profilable-command|profilable-metadata}\n"
|
"\t[--type {current|default|diff|full|list|missing|new|profilable|profilable-command|profilable-metadata}]\n"
|
||||||
"\t[--atversion version]]\n"
|
"\t[--atversion version]\n"
|
||||||
"\t[--ignoreadvanced]\n"
|
"\t[--ignoreadvanced]\n"
|
||||||
"\t[--ignoreunsupported]\n"
|
"\t[--ignoreunsupported]\n"
|
||||||
"\t[--ignorelocal]\n"
|
"\t[--ignorelocal]\n"
|
||||||
@ -100,6 +101,7 @@ xx(dumpconfig,
|
|||||||
"\t[--profile ProfileName]\n"
|
"\t[--profile ProfileName]\n"
|
||||||
"\t[--metadataprofile ProfileName]\n"
|
"\t[--metadataprofile ProfileName]\n"
|
||||||
"\t[--mergedconfig]\n"
|
"\t[--mergedconfig]\n"
|
||||||
|
"\t[--sinceversion version]\n"
|
||||||
"\t[--showdeprecated]\n"
|
"\t[--showdeprecated]\n"
|
||||||
"\t[--showunsupported]\n"
|
"\t[--showunsupported]\n"
|
||||||
"\t[--validate]\n"
|
"\t[--validate]\n"
|
||||||
@ -111,8 +113,8 @@ xx(dumpconfig,
|
|||||||
"\t[ConfigurationNode...]\n",
|
"\t[ConfigurationNode...]\n",
|
||||||
atversion_ARG, configtype_ARG, file_ARG, ignoreadvanced_ARG,
|
atversion_ARG, configtype_ARG, file_ARG, ignoreadvanced_ARG,
|
||||||
ignoreunsupported_ARG, ignorelocal_ARG, list_ARG, mergedconfig_ARG, metadataprofile_ARG,
|
ignoreunsupported_ARG, ignorelocal_ARG, list_ARG, mergedconfig_ARG, metadataprofile_ARG,
|
||||||
showdeprecated_ARG, showunsupported_ARG, validate_ARG, withsummary_ARG, withcomments_ARG,
|
sinceversion_ARG, showdeprecated_ARG, showunsupported_ARG, validate_ARG, withsummary_ARG,
|
||||||
withspaces_ARG, unconfigured_ARG, withversions_ARG)
|
withcomments_ARG, withspaces_ARG, unconfigured_ARG, withversions_ARG)
|
||||||
|
|
||||||
xx(formats,
|
xx(formats,
|
||||||
"List available metadata formats",
|
"List available metadata formats",
|
||||||
@ -499,8 +501,8 @@ xx(lvmconfig,
|
|||||||
PERMITTED_READ_ONLY | NO_METADATA_PROCESSING,
|
PERMITTED_READ_ONLY | NO_METADATA_PROCESSING,
|
||||||
"lvmconfig\n"
|
"lvmconfig\n"
|
||||||
"\t[-f|--file filename]\n"
|
"\t[-f|--file filename]\n"
|
||||||
"\t[--type {current|default|diff|full|list|missing|new|profilable|profilable-command|profilable-metadata}\n"
|
"\t[--type {current|default|diff|full|list|missing|new|profilable|profilable-command|profilable-metadata}]\n"
|
||||||
"\t[--atversion version]]\n"
|
"\t[--atversion version]\n"
|
||||||
"\t[--ignoreadvanced]\n"
|
"\t[--ignoreadvanced]\n"
|
||||||
"\t[--ignoreunsupported]\n"
|
"\t[--ignoreunsupported]\n"
|
||||||
"\t[--ignorelocal]\n"
|
"\t[--ignorelocal]\n"
|
||||||
@ -510,6 +512,7 @@ xx(lvmconfig,
|
|||||||
"\t[--profile ProfileName]\n"
|
"\t[--profile ProfileName]\n"
|
||||||
"\t[--metadataprofile ProfileName]\n"
|
"\t[--metadataprofile ProfileName]\n"
|
||||||
"\t[--mergedconfig]\n"
|
"\t[--mergedconfig]\n"
|
||||||
|
"\t[--sinceversion version]\n"
|
||||||
"\t[--showdeprecated]\n"
|
"\t[--showdeprecated]\n"
|
||||||
"\t[--showunsupported]\n"
|
"\t[--showunsupported]\n"
|
||||||
"\t[--validate]\n"
|
"\t[--validate]\n"
|
||||||
@ -521,8 +524,8 @@ xx(lvmconfig,
|
|||||||
"\t[ConfigurationNode...]\n",
|
"\t[ConfigurationNode...]\n",
|
||||||
atversion_ARG, configtype_ARG, file_ARG, ignoreadvanced_ARG,
|
atversion_ARG, configtype_ARG, file_ARG, ignoreadvanced_ARG,
|
||||||
ignoreunsupported_ARG, ignorelocal_ARG, list_ARG, mergedconfig_ARG, metadataprofile_ARG,
|
ignoreunsupported_ARG, ignorelocal_ARG, list_ARG, mergedconfig_ARG, metadataprofile_ARG,
|
||||||
showdeprecated_ARG, showunsupported_ARG, validate_ARG, withsummary_ARG, withcomments_ARG,
|
sinceversion_ARG, showdeprecated_ARG, showunsupported_ARG, validate_ARG, withsummary_ARG,
|
||||||
withspaces_ARG, unconfigured_ARG, withversions_ARG)
|
withcomments_ARG, withspaces_ARG, unconfigured_ARG, withversions_ARG)
|
||||||
|
|
||||||
xx(lvmdiskscan,
|
xx(lvmdiskscan,
|
||||||
"List devices that may be used as physical volumes",
|
"List devices that may be used as physical volumes",
|
||||||
|
@ -17,10 +17,17 @@
|
|||||||
|
|
||||||
static int _get_vsn(struct cmd_context *cmd, uint16_t *version_int)
|
static int _get_vsn(struct cmd_context *cmd, uint16_t *version_int)
|
||||||
{
|
{
|
||||||
const char *atversion = arg_str_value(cmd, atversion_ARG, LVM_VERSION);
|
const char *version;
|
||||||
unsigned int major, minor, patchlevel;
|
unsigned int major, minor, patchlevel;
|
||||||
|
|
||||||
if (sscanf(atversion, "%u.%u.%u", &major, &minor, &patchlevel) != 3) {
|
if (arg_count(cmd, atversion_ARG))
|
||||||
|
version = arg_str_value(cmd, atversion_ARG, NULL);
|
||||||
|
else if (arg_count(cmd, sinceversion_ARG))
|
||||||
|
version = arg_str_value(cmd, sinceversion_ARG, NULL);
|
||||||
|
else
|
||||||
|
version = LVM_VERSION;
|
||||||
|
|
||||||
|
if (sscanf(version, "%u.%u.%u", &major, &minor, &patchlevel) != 3) {
|
||||||
log_error("Incorrect version format.");
|
log_error("Incorrect version format.");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -110,10 +117,21 @@ int dumpconfig(struct cmd_context *cmd, int argc, char **argv)
|
|||||||
return EINVALID_CMD_LINE;
|
return EINVALID_CMD_LINE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (arg_count(cmd, atversion_ARG) && !arg_count(cmd, configtype_ARG) &&
|
if (arg_count(cmd, atversion_ARG)) {
|
||||||
!arg_count(cmd, list_ARG)) {
|
if (arg_count(cmd, sinceversion_ARG)) {
|
||||||
log_error("--atversion requires --type or --list");
|
log_error("Only one of --atversion and --sinceversion permitted.");
|
||||||
return EINVALID_CMD_LINE;
|
return EINVALID_CMD_LINE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!arg_count(cmd, configtype_ARG) && !arg_count(cmd, list_ARG)) {
|
||||||
|
log_error("--atversion requires --type or --list");
|
||||||
|
return EINVALID_CMD_LINE;
|
||||||
|
}
|
||||||
|
} else if (arg_count(cmd, sinceversion_ARG)) {
|
||||||
|
if (!arg_count(cmd, configtype_ARG) || strcmp(type, "new")) {
|
||||||
|
log_error("--sinceversion requires --type new");
|
||||||
|
return EINVALID_CMD_LINE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (arg_count(cmd, ignoreadvanced_ARG))
|
if (arg_count(cmd, ignoreadvanced_ARG))
|
||||||
@ -252,7 +270,8 @@ int dumpconfig(struct cmd_context *cmd, int argc, char **argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!strcmp(type, "new")) {
|
else if (!strcmp(type, "new")) {
|
||||||
tree_spec.type = CFG_DEF_TREE_NEW;
|
tree_spec.type = arg_count(cmd, sinceversion_ARG) ? CFG_DEF_TREE_NEW_SINCE
|
||||||
|
: CFG_DEF_TREE_NEW;
|
||||||
/* new type does not require check status */
|
/* new type does not require check status */
|
||||||
}
|
}
|
||||||
else if (!strcmp(type, "profilable")) {
|
else if (!strcmp(type, "profilable")) {
|
||||||
|
Loading…
Reference in New Issue
Block a user