diff --git a/WHATS_NEW_DM b/WHATS_NEW_DM index 409137560..2c2b54a40 100644 --- a/WHATS_NEW_DM +++ b/WHATS_NEW_DM @@ -1,5 +1,6 @@ Version 1.02.24 - =================================== + Fix deptree to pass new name to _resume_node after a rename. Add node operation stack debug messages. Report error when empty device name passed to readahead functions. Fix minimum readahead debug message. diff --git a/libdm/libdm-deptree.c b/libdm/libdm-deptree.c index 14e2b4ad8..96e1c5167 100644 --- a/libdm/libdm-deptree.c +++ b/libdm/libdm-deptree.c @@ -1160,11 +1160,11 @@ int dm_tree_activate_children(struct dm_tree_node *dnode, if (!child->info.inactive_table && !child->info.suspended) continue; - if (!_resume_node(name, child->info.major, child->info.minor, + if (!_resume_node(child->name, child->info.major, child->info.minor, child->props.read_ahead, child->props.read_ahead_flags, &newinfo)) { log_error("Unable to resume %s (%" PRIu32 - ":%" PRIu32 ")", name, child->info.major, + ":%" PRIu32 ")", child->name, child->info.major, child->info.minor); continue; }