mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
vgsplit: Fix VG component of lvid.
Fix VG component of lvid in vgsplit and vgmerge Update vg_validate() to detect the error. Call lv_is_active() before moving LV into new VG, not after.
This commit is contained in:
parent
64ce3a8066
commit
1e1c2769a7
@ -1,5 +1,6 @@
|
||||
Version 2.02.108 -
|
||||
=================================
|
||||
Fix VG component of lvid in vgsplit/vgmerge and check in vg_validate.
|
||||
Add lv_full_name and lv_dm_path fields to reports.
|
||||
Change lv_path field to suppress devices that never appear in /dev/vg.
|
||||
Postpone thin pool lvconvert prompts (2.02.107).
|
||||
|
@ -2331,6 +2331,7 @@ int vg_validate(struct volume_group *vg)
|
||||
struct lv_segment *seg;
|
||||
struct dm_str_list *sl;
|
||||
char uuid[64] __attribute__((aligned(8)));
|
||||
char uuid2[64] __attribute__((aligned(8)));
|
||||
int r = 1;
|
||||
unsigned hidden_lv_count = 0, lv_count = 0, lv_visible_count = 0;
|
||||
unsigned pv_count = 0;
|
||||
@ -2427,6 +2428,17 @@ int vg_validate(struct volume_group *vg)
|
||||
r = 0;
|
||||
}
|
||||
|
||||
if (!id_equal(&lvl->lv->lvid.id[0], &lvl->lv->vg->id)) {
|
||||
if (!id_write_format(&lvl->lv->lvid.id[0], uuid,
|
||||
sizeof(uuid)))
|
||||
stack;
|
||||
if (!id_write_format(&lvl->lv->vg->id, uuid2,
|
||||
sizeof(uuid2)))
|
||||
stack;
|
||||
log_error(INTERNAL_ERROR "LV %s has VG UUID %s but its VG %s has UUID %s",
|
||||
lvl->lv->name, uuid, lvl->lv->vg->name, uuid2);
|
||||
r = 0;
|
||||
}
|
||||
|
||||
if (lv_is_cow(lvl->lv))
|
||||
num_snapshots++;
|
||||
|
@ -133,6 +133,7 @@ static int _vgmerge_single(struct cmd_context *cmd, const char *vg_name_to,
|
||||
|
||||
dm_list_iterate_items(lvl1, &vg_from->lvs) {
|
||||
lvl1->lv->vg = vg_to;
|
||||
lvl1->lv->lvid.id[0] = lvl1->lv->vg->id;
|
||||
}
|
||||
|
||||
while (!dm_list_empty(&vg_from->lvs)) {
|
||||
|
@ -16,13 +16,9 @@
|
||||
#include "tools.h"
|
||||
#include "metadata.h" /* for 'get_only_segment_using_this_lv' */
|
||||
|
||||
/* FIXME Why not (lv->vg == vg) ? */
|
||||
static int _lv_is_in_vg(struct volume_group *vg, struct logical_volume *lv)
|
||||
{
|
||||
struct lv_list *lvl;
|
||||
|
||||
dm_list_iterate_items(lvl, &vg->lvs)
|
||||
if (lv == lvl->lv)
|
||||
if (lv->vg == vg)
|
||||
return 1;
|
||||
|
||||
return 0;
|
||||
@ -34,14 +30,16 @@ static int _move_one_lv(struct volume_group *vg_from,
|
||||
{
|
||||
struct logical_volume *lv = dm_list_item(lvh, struct lv_list)->lv;
|
||||
|
||||
dm_list_move(&vg_to->lvs, lvh);
|
||||
lv->vg = vg_to;
|
||||
|
||||
if (lv_is_active(lv)) {
|
||||
log_error("Logical volume \"%s\" must be inactive", lv->name);
|
||||
return 0;
|
||||
}
|
||||
|
||||
dm_list_move(&vg_to->lvs, lvh);
|
||||
lv->vg = vg_to;
|
||||
|
||||
lv->lvid.id[0] = lv->vg->id;
|
||||
|
||||
/* Moved pool metadata spare LV */
|
||||
if (vg_from->pool_metadata_spare_lv == lv) {
|
||||
vg_to->pool_metadata_spare_lv = lv;
|
||||
|
Loading…
Reference in New Issue
Block a user