From: Zdenek Kabelac Date: Mon, 17 Oct 2011 14:14:33 +0000 (+0000) Subject: Drop old check for transaction_id X-Git-Tag: v2_02_91~415 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=df6b1b8fe6aa68f9db8410d081a1d6d1d297dbaf;p=lvm2.git Drop old check for transaction_id (revert) --- diff --git a/libdm/libdm-deptree.c b/libdm/libdm-deptree.c index 9cadfc64d..157f30f01 100644 --- a/libdm/libdm-deptree.c +++ b/libdm/libdm-deptree.c @@ -1512,18 +1512,6 @@ int dm_tree_activate_children(struct dm_tree_node *dnode, /* Update cached info */ child->info = newinfo; - - /* FIXME: trial version - to avoid use of unsynchronized thin_pool transaction_id */ - if (child->props.thin_pool_transaction_id && - !_check_thin_pool_transaction_id(child->name, child->info.major, - child->info.minor, - child->props.thin_pool_transaction_id)) { - stack; - if (!(dm_tree_deactivate_children(child, uuid_prefix, uuid_prefix_len))) - log_error("Failed to deactivate %s", child->name); - r = 0; - continue; - } } } @@ -2207,18 +2195,6 @@ int dm_tree_preload_children(struct dm_tree_node *dnode, */ if (child->props.immediate_dev_node) update_devs_flag = 1; - - /* FIXME: trial version - to avoid use of unsynchronized thin_pool transaction_id */ - if (child->props.thin_pool_transaction_id && - !_check_thin_pool_transaction_id(child->name, child->info.major, - child->info.minor, - child->props.thin_pool_transaction_id)) { - stack; - if (!(dm_tree_deactivate_children(child, uuid_prefix, uuid_prefix_len))) - log_error("Failed to deactivate %s", child->name); - r = 0; - continue; - } } handle = NULL;