1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-02 01:18:26 +03:00

Log value chosen in _find_config_bool like other variable types do.

This commit is contained in:
Alasdair Kergon 2012-05-08 14:31:44 +00:00
parent eb2d70293d
commit fccc6ea295
2 changed files with 19 additions and 11 deletions

View File

@ -1,5 +1,6 @@
Version 1.02.75 - Version 1.02.75 -
================================ ================================
Log value chosen in _find_config_bool like other variable types do.
Synchronize with dead of dmeventd. Synchronize with dead of dmeventd.
Rename (Blk)DevNames/DevNos dmsetup header to (Blk)DevNamesUsed/DevNosUsed. Rename (Blk)DevNames/DevNos dmsetup header to (Blk)DevNamesUsed/DevNosUsed.
Add configure --with-veritysetup for independent veritysetup tool. Add configure --with-veritysetup for independent veritysetup tool.

View File

@ -842,21 +842,28 @@ static int _find_config_bool(const void *start, node_lookup_fn find,
{ {
const struct dm_config_node *n = find(start, path); const struct dm_config_node *n = find(start, path);
const struct dm_config_value *v; const struct dm_config_value *v;
int b;
if (!n) if (n) {
return fail;
v = n->v; v = n->v;
switch (v->type) { switch (v->type) {
case DM_CFG_INT: case DM_CFG_INT:
return v->v.i ? 1 : 0; b = v->v.i ? 1 : 0;
log_very_verbose("Setting %s to %d", path, b);
return b;
case DM_CFG_STRING: case DM_CFG_STRING:
return _str_to_bool(v->v.str, fail); b = _str_to_bool(v->v.str, fail);
log_very_verbose("Setting %s to %d", path, b);
return b;
default: default:
; ;
} }
}
log_very_verbose("%s not found in config: defaulting to %d",
path, fail);
return fail; return fail;
} }