From df390f1799bb859ad95cf85d229c68f3afadc4ff Mon Sep 17 00:00:00 2001 From: Alasdair Kergon Date: Sat, 11 Jun 2011 00:03:06 +0000 Subject: [PATCH] Major pvmove fix to issue ioctls in the correct order when multiple LVs are affected by the move. (Currently it's possible for I/O to become trapped between suspended devices amongst other problems. The current fix was selected so as to minimise the testing surface. I hope eventually to replace it with a cleaner one that extends the deptree code. Some lvconvert scenarios still suffer from related problems. --- WHATS_NEW | 3 + WHATS_NEW_DM | 3 +- daemons/clvmd/lvm-functions.c | 4 +- lib/activate/activate.c | 99 +++++++++++++++++++++++------- lib/activate/dev_manager.c | 34 +++++++++-- lib/activate/dev_manager.h | 3 +- lib/locking/locking.c | 4 +- lib/metadata/lv_manip.c | 8 ++- lib/metadata/metadata-exported.h | 1 + lib/metadata/mirror.c | 20 ++++++- lib/mm/memlock.c | 10 ++-- lib/mm/memlock.h | 4 +- libdm/libdm-deptree.c | 32 ++++++++-- tools/pvmove.c | 100 +++++++++++++++++-------------- tools/vgchange.c | 2 +- 15 files changed, 231 insertions(+), 96 deletions(-) diff --git a/WHATS_NEW b/WHATS_NEW index afab8566b..bbad63dc1 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,5 +1,8 @@ Version 2.02.86 - ================================= + Fix ignored background polling default in vgchange -ay. + Fix pvmove activation sequences to avoid trapped I/O with multiple LVs. + Annotate critical section debug messages. Fix reduction of mirrors with striped segments to always align to stripe size. Validate mirror segments size. Fix extent rounding for striped volumes (never reduce more than requested). diff --git a/WHATS_NEW_DM b/WHATS_NEW_DM index 278bdf8a2..59839f515 100644 --- a/WHATS_NEW_DM +++ b/WHATS_NEW_DM @@ -1,6 +1,7 @@ Version 1.02.65 - ================================== - Accept new kernel version 3 formats in initialisation. + Delay resuming new preloaded mirror devices with core logs in deptree code. + Accept new kernel version 3 uname formats in initialisation. Version 1.02.64 - 29th April 2011 ================================== diff --git a/daemons/clvmd/lvm-functions.c b/daemons/clvmd/lvm-functions.c index 3157ab62b..c10ce9df3 100644 --- a/daemons/clvmd/lvm-functions.c +++ b/daemons/clvmd/lvm-functions.c @@ -384,9 +384,9 @@ static int do_activate_lv(char *resource, unsigned char lock_flags, int mode) goto error; if (lvi.suspended) { - critical_section_inc(cmd); + critical_section_inc(cmd, "resuming"); if (!lv_resume(cmd, resource, 0)) { - critical_section_dec(cmd); + critical_section_dec(cmd, "resumed"); goto error; } } diff --git a/lib/activate/activate.c b/lib/activate/activate.c index 1ec518d59..36d6f2af0 100644 --- a/lib/activate/activate.c +++ b/lib/activate/activate.c @@ -534,7 +534,7 @@ int lv_check_transient(struct logical_volume *lv) if (!activation()) return 0; - if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name))) + if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, 1))) return_0; if (!(r = dev_manager_transient(dm, lv))) @@ -556,7 +556,7 @@ int lv_snapshot_percent(const struct logical_volume *lv, percent_t *percent) if (!activation()) return 0; - if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name))) + if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, 1))) return_0; if (!(r = dev_manager_snapshot_percent(dm, lv, percent))) @@ -591,7 +591,7 @@ int lv_mirror_percent(struct cmd_context *cmd, const struct logical_volume *lv, if (!info.exists) return 0; - if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name))) + if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, 1))) return_0; if (!(r = dev_manager_mirror_percent(dm, lv, wait, percent, event_nr))) @@ -631,7 +631,7 @@ static int _lv_activate_lv(struct logical_volume *lv, unsigned origin_only) int r; struct dev_manager *dm; - if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name))) + if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, (lv->status & PVMOVE) ? 0 : 1))) return_0; if (!(r = dev_manager_activate(dm, lv, origin_only))) @@ -646,7 +646,7 @@ static int _lv_preload(struct logical_volume *lv, unsigned origin_only, int *flu int r; struct dev_manager *dm; - if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name))) + if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, (lv->status & PVMOVE) ? 0 : 1))) return_0; if (!(r = dev_manager_preload(dm, lv, origin_only, flush_required))) @@ -661,7 +661,7 @@ static int _lv_deactivate(struct logical_volume *lv) int r; struct dev_manager *dm; - if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name))) + if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, 1))) return_0; if (!(r = dev_manager_deactivate(dm, lv))) @@ -676,7 +676,11 @@ static int _lv_suspend_lv(struct logical_volume *lv, unsigned origin_only, int l int r; struct dev_manager *dm; - if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name))) + /* + * When we are asked to manipulate (normally suspend/resume) the PVMOVE + * device directly, we don't want to touch the devices that use it. + */ + if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, (lv->status & PVMOVE) ? 0 : 1))) return_0; if (!(r = dev_manager_suspend(dm, lv, origin_only, lockfs, flush_required))) @@ -1080,7 +1084,9 @@ int monitor_dev_for_events(struct cmd_context *cmd, struct logical_volume *lv, static int _lv_suspend(struct cmd_context *cmd, const char *lvid_s, unsigned origin_only, int error_if_not_suspended) { - struct logical_volume *lv = NULL, *lv_pre = NULL; + struct logical_volume *lv = NULL, *lv_pre = NULL, *pvmove_lv = NULL; + struct lv_list *lvl_pre; + struct seg_list *sl; struct lvinfo info; int r = 0, lockfs = 0, flush_required = 0; @@ -1111,7 +1117,7 @@ static int _lv_suspend(struct cmd_context *cmd, const char *lvid_s, if (!error_if_not_suspended) { r = 1; if (info.suspended) - critical_section_inc(cmd); + critical_section_inc(cmd, "already suspended"); } goto out; } @@ -1121,27 +1127,76 @@ static int _lv_suspend(struct cmd_context *cmd, const char *lvid_s, lv_calculate_readahead(lv, NULL); - /* If VG was precommitted, preload devices for the LV */ + /* + * If VG was precommitted, preload devices for the LV. + * If the PVMOVE LV is being removed, it's only present in the old + * metadata and not the new, so we must explicitly add the new + * tables for all the changed LVs here, as the relationships + * are not found by walking the new metadata. + */ if ((lv_pre->vg->status & PRECOMMITTED)) { - if (!_lv_preload(lv_pre, origin_only, &flush_required)) { + if (!(lv_pre->status & LOCKED) && + (lv->status & LOCKED) && + (pvmove_lv = find_pvmove_lv_in_lv(lv))) { + /* Preload all the LVs above the PVMOVE LV */ + dm_list_iterate_items(sl, &pvmove_lv->segs_using_this_lv) { + if (!(lvl_pre = find_lv_in_vg(lv_pre->vg, sl->seg->lv->name))) { + /* FIXME Internal error? */ + log_error("LV %s missing from preload metadata", sl->seg->lv->name); + goto out; + } + if (!_lv_preload(lvl_pre->lv, origin_only, &flush_required)) + goto_out; + } + /* Now preload the PVMOVE LV itself */ + if (!(lvl_pre = find_lv_in_vg(lv_pre->vg, pvmove_lv->name))) { + /* FIXME Internal error? */ + log_error("LV %s missing from preload metadata", pvmove_lv->name); + goto out; + } + if (!_lv_preload(lvl_pre->lv, origin_only, &flush_required)) + goto_out; + } else if (!_lv_preload(lv_pre, origin_only, &flush_required)) /* FIXME Revert preloading */ goto_out; - } } if (!monitor_dev_for_events(cmd, lv, origin_only, 0)) /* FIXME Consider aborting here */ stack; - critical_section_inc(cmd); + critical_section_inc(cmd, "suspending"); + if (pvmove_lv) + critical_section_inc(cmd, "suspending pvmove LV"); if (!origin_only && (lv_is_origin(lv_pre) || lv_is_cow(lv_pre))) lockfs = 1; - if (!_lv_suspend_lv(lv, origin_only, lockfs, flush_required)) { - critical_section_dec(cmd); - goto out; + /* + * Suspending an LV directly above a PVMOVE LV also + * suspends other LVs using that same PVMOVE LV. + * FIXME Remove this and delay the 'clear node' until + * after the code knows whether there's a different + * inactive table to load or not instead so lv_suspend + * can be called separately for each LV safely. + */ + if ((lv_pre->vg->status & PRECOMMITTED) && + (lv_pre->status & LOCKED) && find_pvmove_lv_in_lv(lv_pre)) { + if (!_lv_suspend_lv(lv_pre, origin_only, lockfs, flush_required)) { + critical_section_dec(cmd, "failed precommitted suspend"); + if (pvmove_lv) + critical_section_dec(cmd, "failed precommitted suspend (pvmove)"); + goto_out; + } + } else { + /* Normal suspend */ + if (!_lv_suspend_lv(lv, origin_only, lockfs, flush_required)) { + critical_section_dec(cmd, "failed suspend"); + if (pvmove_lv) + critical_section_dec(cmd, "failed suspend (pvmove)"); + goto_out; + } } r = 1; @@ -1210,6 +1265,8 @@ static int _lv_resume(struct cmd_context *cmd, const char *lvid_s, if (error_if_not_active) goto_out; r = 1; + if (!info.suspended) + critical_section_dec(cmd, "already resumed"); goto out; } @@ -1224,7 +1281,7 @@ static int _lv_resume(struct cmd_context *cmd, const char *lvid_s, if (!_lv_activate_lv(lv, origin_only)) goto_out; - critical_section_dec(cmd); + critical_section_dec(cmd, "resumed"); if (!monitor_dev_for_events(cmd, lv, origin_only, 1)) stack; @@ -1316,9 +1373,9 @@ int lv_deactivate(struct cmd_context *cmd, const char *lvid_s) if (!monitor_dev_for_events(cmd, lv, 0, 0)) stack; - critical_section_inc(cmd); + critical_section_inc(cmd, "deactivating"); r = _lv_deactivate(lv); - critical_section_dec(cmd); + critical_section_dec(cmd, "deactivated"); if (!lv_info(cmd, lv, 0, &info, 0, 0) || info.exists) r = 0; @@ -1413,10 +1470,10 @@ static int _lv_activate(struct cmd_context *cmd, const char *lvid_s, if (exclusive) lv->status |= ACTIVATE_EXCL; - critical_section_inc(cmd); + critical_section_inc(cmd, "activating"); if (!(r = _lv_activate_lv(lv, 0))) stack; - critical_section_dec(cmd); + critical_section_dec(cmd, "activated"); if (r && !monitor_dev_for_events(cmd, lv, 0, 1)) stack; diff --git a/lib/activate/dev_manager.c b/lib/activate/dev_manager.c index 9f4b2da96..3ca6c5b43 100644 --- a/lib/activate/dev_manager.c +++ b/lib/activate/dev_manager.c @@ -49,6 +49,7 @@ struct dev_manager { void *target_state; uint32_t pvmove_mirror_count; int flush_required; + unsigned track_pvmove_deps; char *vg_name; }; @@ -640,7 +641,8 @@ int dev_manager_transient(struct dev_manager *dm, struct logical_volume *lv) * dev_manager implementation. */ struct dev_manager *dev_manager_create(struct cmd_context *cmd, - const char *vg_name) + const char *vg_name, + unsigned track_pvmove_deps) { struct dm_pool *mem; struct dev_manager *dm; @@ -657,6 +659,12 @@ struct dev_manager *dev_manager_create(struct cmd_context *cmd, if (!(dm->vg_name = dm_pool_strdup(dm->mem, vg_name))) goto_bad; + /* + * When we manipulate (normally suspend/resume) the PVMOVE + * device directly, there's no need to touch the LVs above. + */ + dm->track_pvmove_deps = track_pvmove_deps; + dm->target_state = NULL; dm_udev_set_sync_support(cmd->current_settings.udev_sync); @@ -1039,6 +1047,8 @@ static int _add_partial_replicator_to_dtree(struct dev_manager *dm, */ static int _add_lv_to_dtree(struct dev_manager *dm, struct dm_tree *dtree, struct logical_volume *lv, unsigned origin_only) { + struct seg_list *sl; + if (!origin_only && !_add_dev_to_dtree(dm, dtree, lv, NULL)) return_0; @@ -1053,6 +1063,12 @@ static int _add_lv_to_dtree(struct dev_manager *dm, struct dm_tree *dtree, struc !_add_dev_to_dtree(dm, dtree, first_seg(lv)->log_lv, NULL)) return_0; + /* Add any LVs referencing a PVMOVE LV unless told not to. */ + if (dm->track_pvmove_deps && lv->status & PVMOVE) + dm_list_iterate_items(sl, &lv->segs_using_this_lv) + if (!_add_lv_to_dtree(dm, dtree, sl->seg->lv, origin_only)) + return_0; + /* Adding LV head of replicator adds all other related devs */ if (lv_is_replicator_dev(lv) && !_add_partial_replicator_to_dtree(dm, dtree, lv)) @@ -1436,10 +1452,11 @@ static int _add_segment_to_dtree(struct dev_manager *dm, } static int _add_new_lv_to_dtree(struct dev_manager *dm, struct dm_tree *dtree, - struct logical_volume *lv, const char *layer) + struct logical_volume *lv, const char *layer) { struct lv_segment *seg; struct lv_layer *lvlayer; + struct seg_list *sl; struct dm_tree_node *dnode; const struct dm_info *dinfo; char *name, *dlid; @@ -1492,6 +1509,9 @@ static int _add_new_lv_to_dtree(struct dev_manager *dm, struct dm_tree *dtree, * existing inactive table left behind. * Major/minor settings only apply to the visible layer. */ + /* FIXME Move the clear from here until later, so we can leave + * identical inactive tables untouched. (For pvmove.) + */ if (!(dnode = dm_tree_add_new_dev_with_udev_flags(dtree, name, dlid, layer ? UINT32_C(0) : (uint32_t) lv->major, layer ? UINT32_C(0) : (uint32_t) lv->minor, @@ -1528,6 +1548,12 @@ static int _add_new_lv_to_dtree(struct dev_manager *dm, struct dm_tree *dtree, dm_tree_node_set_read_ahead(dnode, read_ahead, read_ahead_flags); + /* Add any LVs referencing a PVMOVE LV unless told not to */ + if (dm->track_pvmove_deps && (lv->status & PVMOVE)) + dm_list_iterate_items(sl, &lv->segs_using_this_lv) + if (!_add_new_lv_to_dtree(dm, dtree, sl->seg->lv, NULL)) + return_0; + return 1; } @@ -1744,10 +1770,6 @@ int dev_manager_activate(struct dev_manager *dm, struct logical_volume *lv, unsi int dev_manager_preload(struct dev_manager *dm, struct logical_volume *lv, unsigned origin_only, int *flush_required) { - /* FIXME Update the pvmove implementation! */ - if ((lv->status & PVMOVE) || (lv->status & LOCKED)) - return 1; - if (!_tree_action(dm, lv, origin_only, PRELOAD)) return 0; diff --git a/lib/activate/dev_manager.h b/lib/activate/dev_manager.h index b0bb275a2..bbc30a714 100644 --- a/lib/activate/dev_manager.h +++ b/lib/activate/dev_manager.h @@ -29,7 +29,8 @@ struct device; * Constructor and destructor. */ struct dev_manager *dev_manager_create(struct cmd_context *cmd, - const char *vg_name); + const char *vg_name, + unsigned track_pvmove_deps); void dev_manager_destroy(struct dev_manager *dm); void dev_manager_release(void); void dev_manager_exit(void); diff --git a/lib/locking/locking.c b/lib/locking/locking.c index a97581308..2d40c075a 100644 --- a/lib/locking/locking.c +++ b/lib/locking/locking.c @@ -167,7 +167,7 @@ static void _lock_memory(struct cmd_context *cmd, lv_operation_t lv_op) return; if (lv_op == LV_SUSPEND) - critical_section_inc(cmd); + critical_section_inc(cmd, "locking for suspend"); } static void _unlock_memory(struct cmd_context *cmd, lv_operation_t lv_op) @@ -176,7 +176,7 @@ static void _unlock_memory(struct cmd_context *cmd, lv_operation_t lv_op) return; if (lv_op == LV_RESUME) - critical_section_dec(cmd); + critical_section_dec(cmd, "unlocking on resume"); } void reset_locking(void) diff --git a/lib/metadata/lv_manip.c b/lib/metadata/lv_manip.c index 4cb8c45ff..952f1d2ac 100644 --- a/lib/metadata/lv_manip.c +++ b/lib/metadata/lv_manip.c @@ -494,15 +494,19 @@ int replace_lv_with_error_segment(struct logical_volume *lv) { uint32_t len = lv->le_count; - if (!lv_empty(lv)) + if (len && !lv_empty(lv)) return_0; + /* Minimum size required for a table. */ + if (!len) + len = 1; + /* * Since we are replacing the whatever-was-there with * an error segment, we should also clear any flags * that suggest it is anything other than "error". */ - lv->status &= ~MIRRORED; + lv->status &= ~(MIRRORED|PVMOVE); /* FIXME: Should we bug if we find a log_lv attached? */ diff --git a/lib/metadata/metadata-exported.h b/lib/metadata/metadata-exported.h index 0e996de63..445fdc490 100644 --- a/lib/metadata/metadata-exported.h +++ b/lib/metadata/metadata-exported.h @@ -753,6 +753,7 @@ struct logical_volume *find_pvmove_lv_from_pvname(struct cmd_context *cmd, const char *name, const char *uuid, uint32_t lv_type); +struct logical_volume *find_pvmove_lv_in_lv(struct logical_volume *lv); const char *get_pvmove_pvname_from_lv(struct logical_volume *lv); const char *get_pvmove_pvname_from_lv_mirr(struct logical_volume *lv_mirr); percent_t copy_percent(const struct logical_volume *lv_mirr); diff --git a/lib/metadata/mirror.c b/lib/metadata/mirror.c index b02c7bb3f..54ac978dc 100644 --- a/lib/metadata/mirror.c +++ b/lib/metadata/mirror.c @@ -1445,7 +1445,10 @@ const char *get_pvmove_pvname_from_lv_mirr(struct logical_volume *lv_mirr) return NULL; } -const char *get_pvmove_pvname_from_lv(struct logical_volume *lv) +/* + * Find first pvmove LV referenced by a segment of an LV. + */ +struct logical_volume *find_pvmove_lv_in_lv(struct logical_volume *lv) { struct lv_segment *seg; uint32_t s; @@ -1454,13 +1457,26 @@ const char *get_pvmove_pvname_from_lv(struct logical_volume *lv) for (s = 0; s < seg->area_count; s++) { if (seg_type(seg, s) != AREA_LV) continue; - return get_pvmove_pvname_from_lv_mirr(seg_lv(seg, s)); + if (seg_lv(seg, s)->status & PVMOVE) + return seg_lv(seg, s); } } return NULL; } +const char *get_pvmove_pvname_from_lv(struct logical_volume *lv) +{ + struct logical_volume *pvmove_lv; + + pvmove_lv = find_pvmove_lv_in_lv(lv); + + if (pvmove_lv) + return get_pvmove_pvname_from_lv_mirr(pvmove_lv); + else + return NULL; +} + struct logical_volume *find_pvmove_lv(struct volume_group *vg, struct device *dev, uint32_t lv_type) diff --git a/lib/mm/memlock.c b/lib/mm/memlock.c index 86beb8e66..2ce81ba9e 100644 --- a/lib/mm/memlock.c +++ b/lib/mm/memlock.c @@ -395,19 +395,21 @@ static void _unlock_mem_if_possible(struct cmd_context *cmd) } } -void critical_section_inc(struct cmd_context *cmd) +void critical_section_inc(struct cmd_context *cmd, const char *reason) { ++_critical_section_count; - log_debug("critical_section_inc to %d", _critical_section_count); + log_debug("critical_section_inc to %d (%s).", _critical_section_count, + reason); _lock_mem_if_needed(cmd); } -void critical_section_dec(struct cmd_context *cmd) +void critical_section_dec(struct cmd_context *cmd, const char *reason) { if (!_critical_section_count) log_error(INTERNAL_ERROR "_critical_section has dropped below 0."); --_critical_section_count; - log_debug("critical_section_dec to %d", _critical_section_count); + log_debug("critical_section_dec to %d (%s).", _critical_section_count, + reason); } int critical_section(void) diff --git a/lib/mm/memlock.h b/lib/mm/memlock.h index d9e53f7f8..aab9c859c 100644 --- a/lib/mm/memlock.h +++ b/lib/mm/memlock.h @@ -31,8 +31,8 @@ struct cmd_context; * memlock_reset() is necessary to clear the state after forking (polldaemon). */ -void critical_section_inc(struct cmd_context *cmd); -void critical_section_dec(struct cmd_context *cmd); +void critical_section_inc(struct cmd_context *cmd, const char *reason); +void critical_section_dec(struct cmd_context *cmd, const char *reason); int critical_section(void); void memlock_inc_daemon(struct cmd_context *cmd); void memlock_dec_daemon(struct cmd_context *cmd); diff --git a/libdm/libdm-deptree.c b/libdm/libdm-deptree.c index 50687928f..eac9237b5 100644 --- a/libdm/libdm-deptree.c +++ b/libdm/libdm-deptree.c @@ -149,7 +149,16 @@ struct load_properties { * and processing of dm tree). This will also flush all stacked dev * node operations, synchronizing with udev. */ - int immediate_dev_node; + unsigned immediate_dev_node; + + /* + * If the device size changed from zero and this is set, + * don't resume the device immediately, even if the device + * has parents. This works provided the parents do not + * validate the device size and is required by pvmove to + * avoid starting the mirror resync operation too early. + */ + unsigned delay_resume_if_new; }; /* Two of these used to join two nodes with uses and used_by. */ @@ -1795,7 +1804,7 @@ static int _load_node(struct dm_tree_node *dnode) int r = 0; struct dm_task *dmt; struct load_segment *seg; - uint64_t seg_start = 0; + uint64_t seg_start = 0, existing_table_size; log_verbose("Loading %s table (%" PRIu32 ":%" PRIu32 ")", dnode->name, dnode->info.major, dnode->info.minor); @@ -1833,12 +1842,20 @@ static int _load_node(struct dm_tree_node *dnode) log_verbose("Suppressed %s identical table reload.", dnode->name); + existing_table_size = dm_task_get_existing_table_size(dmt); if ((dnode->props.size_changed = - (dm_task_get_existing_table_size(dmt) == seg_start) ? 0 : 1)) + (existing_table_size == seg_start) ? 0 : 1)) { log_debug("Table size changed from %" PRIu64 " to %" - PRIu64 " for %s", - dm_task_get_existing_table_size(dmt), + PRIu64 " for %s", existing_table_size, seg_start, dnode->name); + /* + * Kernel usually skips size validation on zero-length devices + * now so no need to preload them. + */ + /* FIXME In which kernel version did this begin? */ + if (!existing_table_size && dnode->props.delay_resume_if_new) + dnode->props.size_changed = 0; + } } dnode->props.segment_count = 0; @@ -2181,7 +2198,10 @@ int dm_tree_node_add_mirror_target_log(struct dm_tree_node *node, log_error("log uuid pool_strdup failed"); return 0; } - if (!(flags & DM_CORELOG)) { + if ((flags & DM_CORELOG)) + /* For pvmove: immediate resume (for size validation) isn't needed. */ + node->props.delay_resume_if_new = 1; + else { if (!(log_node = dm_tree_find_node_by_uuid(node->dtree, log_uuid))) { log_error("Couldn't find mirror log uuid %s.", log_uuid); return 0; diff --git a/tools/pvmove.c b/tools/pvmove.c index 965a9eb7f..79b17df8e 100644 --- a/tools/pvmove.c +++ b/tools/pvmove.c @@ -305,6 +305,51 @@ static int _detach_pvmove_mirror(struct cmd_context *cmd, return 1; } +static int _suspend_lvs(struct cmd_context *cmd, unsigned first_time, + struct logical_volume *lv_mirr, + struct dm_list *lvs_changed) +{ + /* + * Suspend lvs_changed the first time. + * Suspend mirrors on subsequent calls. + */ + if (first_time) { + if (!suspend_lvs(cmd, lvs_changed)) + return_0; + } else if (!suspend_lv(cmd, lv_mirr)) + return_0; + + return 1; +} + +static int _resume_lvs(struct cmd_context *cmd, unsigned first_time, + struct logical_volume *lv_mirr, + struct dm_list *lvs_changed) +{ + /* + * Suspend lvs_changed the first time. + * Suspend mirrors on subsequent calls. + */ + + if (first_time) { + if (!resume_lvs(cmd, lvs_changed)) { + log_error("Unable to resume logical volumes"); + return 0; + } + } else if (!resume_lv(cmd, lv_mirr)) { + log_error("Unable to reactivate logical volume \"%s\"", + lv_mirr->name); + return 0; + } + + return 1; +} + +/* + * Called to set up initial pvmove LV and to advance the mirror + * to successive sections of it. + * (Not called after the last section completes.) + */ static int _update_metadata(struct cmd_context *cmd, struct volume_group *vg, struct logical_volume *lv_mirr, struct dm_list *lvs_changed, unsigned flags) @@ -319,30 +364,14 @@ static int _update_metadata(struct cmd_context *cmd, struct volume_group *vg, return 0; } - /* Suspend lvs_changed */ - if (!suspend_lvs(cmd, lvs_changed)) { + if (!_suspend_lvs(cmd, first_time, lv_mirr, lvs_changed)) { vg_revert(vg); goto_out; } - /* Suspend mirrors on subsequent calls */ - if (!first_time) { - if (!suspend_lv(cmd, lv_mirr)) { - if (!resume_lvs(cmd, lvs_changed)) - stack; - vg_revert(vg); - goto_out; - } - } - /* Commit on-disk metadata */ if (!vg_commit(vg)) { log_error("ABORTING: Volume group metadata update failed."); - if (!first_time) - if (!resume_lv(cmd, lv_mirr)) - stack; - if (!resume_lvs(cmd, lvs_changed)) - stack; vg_revert(vg); goto out; } @@ -358,9 +387,6 @@ static int _update_metadata(struct cmd_context *cmd, struct volume_group *vg, } /* - * FIXME: review ordering of operations above, - * temporary mirror should be preloaded in suspend. - * Also banned operation here when suspended. * Nothing changed yet, try to revert pvmove. */ log_error("Temporary pvmove mirror activation failed."); @@ -374,29 +400,16 @@ static int _update_metadata(struct cmd_context *cmd, struct volume_group *vg, !vg_write(vg) || !vg_commit(vg)) log_error("ABORTING: Restoring original configuration " "before pvmove failed. Run pvmove --abort."); - - /* Unsuspend LVs */ - if(!resume_lvs(cmd, lvs_changed)) - stack; - - goto out; + goto_out; } - } else if (!resume_lv(cmd, lv_mirr)) { - log_error("Unable to reactivate logical volume \"%s\"", - lv_mirr->name); - if (!resume_lvs(cmd, lvs_changed)) - stack; - goto out; - } - - /* Unsuspend LVs */ - if (!resume_lvs(cmd, lvs_changed)) { - log_error("Unable to resume logical volumes"); - goto out; } r = 1; + out: + if (!_resume_lvs(cmd, first_time, lv_mirr, lvs_changed)) + r = 0; + backup(vg); return r; } @@ -524,7 +537,8 @@ static int _finish_pvmove(struct cmd_context *cmd, struct volume_group *vg, int r = 1; if (!dm_list_empty(lvs_changed) && - !_detach_pvmove_mirror(cmd, lv_mirr)) { + (!_detach_pvmove_mirror(cmd, lv_mirr) || + !replace_lv_with_error_segment(lv_mirr))) { log_error("ABORTING: Removal of temporary mirror failed"); return 0; } @@ -536,18 +550,12 @@ static int _finish_pvmove(struct cmd_context *cmd, struct volume_group *vg, return 0; } - /* Suspend LVs changed */ + /* Suspend LVs changed (implicitly suspends lv_mirr) */ if (!suspend_lvs(cmd, lvs_changed)) { log_error("Locking LVs to remove temporary mirror failed"); r = 0; } - /* Suspend mirror LV to flush pending I/O */ - if (!suspend_lv(cmd, lv_mirr)) { - log_error("Suspension of temporary mirror LV failed"); - r = 0; - } - /* Store metadata without dependencies on mirror segments */ if (!vg_commit(vg)) { log_error("ABORTING: Failed to write new data locations " diff --git a/tools/vgchange.c b/tools/vgchange.c index 6dc241b93..5deb12983 100644 --- a/tools/vgchange.c +++ b/tools/vgchange.c @@ -523,7 +523,7 @@ static int vgchange_single(struct cmd_context *cmd, const char *vg_name, } if (!arg_count(cmd, refresh_ARG) && - arg_count(cmd, poll_ARG)) + background_polling()) if (!_vgchange_background_polling(cmd, vg)) return ECMD_FAILED; -- 2.43.5