1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00

lvmetad: use committed metadata to update

This fixes a regression from commit a7c45ddc5, which moved
the lvmetad VG update from vg_commit() to unlock_vg().

The lvmetad VG update needs to send the version of metadata
that was committed rather than sending the state of struct 'vg'.
The 'vg' may have been partially modified since vg_commit(),
and contain non-committed metadata that shouldn't be sent
to lvmetad.
This commit is contained in:
David Teigland 2016-07-18 14:46:08 -05:00
parent 94207dfd68
commit f8872578e9

25
lib/cache/lvmetad.c vendored
View File

@ -1199,6 +1199,7 @@ int lvmetad_vg_update_finish(struct volume_group *vg)
struct dm_hash_node *n;
struct metadata_area *mda;
char mda_id[128], *num;
struct volume_group *vgc;
struct dm_config_tree *vgmeta;
struct pv_list *pvl;
struct lvmcache_info *info;
@ -1216,7 +1217,13 @@ int lvmetad_vg_update_finish(struct volume_group *vg)
if (!id_write_format(&vg->id, uuid, sizeof(uuid)))
return_0;
if (!(vgmeta = export_vg_to_config_tree(vg))) {
/*
* vg->vg_committted is the state of the VG metadata when vg_commit()
* was called. Since then, vg-> may have been partially modified and
* not committed. We only want to send committed metadata to lvmetad.
*/
if (!(vgmeta = export_vg_to_config_tree(vg->vg_committed))) {
log_error("Failed to export VG to config tree.");
return 0;
}
@ -1242,11 +1249,13 @@ int lvmetad_vg_update_finish(struct volume_group *vg)
daemon_reply_destroy(reply);
n = (vg->fid && vg->fid->metadata_areas_index) ?
dm_hash_get_first(vg->fid->metadata_areas_index) : NULL;
vgc = vg->vg_committed;
n = (vgc->fid && vgc->fid->metadata_areas_index) ?
dm_hash_get_first(vgc->fid->metadata_areas_index) : NULL;
while (n) {
mda = dm_hash_get_data(vg->fid->metadata_areas_index, n);
(void) dm_strncpy(mda_id, dm_hash_get_key(vg->fid->metadata_areas_index, n), sizeof(mda_id));
mda = dm_hash_get_data(vgc->fid->metadata_areas_index, n);
(void) dm_strncpy(mda_id, dm_hash_get_key(vgc->fid->metadata_areas_index, n), sizeof(mda_id));
if ((num = strchr(mda_id, '_'))) {
*num = 0;
++num;
@ -1257,13 +1266,13 @@ int lvmetad_vg_update_finish(struct volume_group *vg)
lvmcache_foreach_mda(info, _fixup_ignored, &baton);
}
}
n = dm_hash_get_next(vg->fid->metadata_areas_index, n);
n = dm_hash_get_next(vgc->fid->metadata_areas_index, n);
}
dm_list_iterate_items(pvl, &vg->pvs) {
dm_list_iterate_items(pvl, &vgc->pvs) {
/* NB. the PV fmt pointer is sometimes wrong during vgconvert */
if (pvl->pv->dev && !lvmetad_pv_found(vg->cmd, &pvl->pv->id, pvl->pv->dev,
vg->fid ? vg->fid->fmt : pvl->pv->fmt,
vgc->fid ? vgc->fid->fmt : pvl->pv->fmt,
pvl->pv->label_sector, NULL, NULL, NULL))
return 0;
}