1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Disable partial activation for thin LVs and LVs with all missing segments

Count number of error and existing areas and if there is no existing area
for the LV avoid its activation.

Always disable partial activatio for thin volumes.

For mirrors currently put in hack to let it pass with a special name
since current mirror code needs to activate such LV during some operations.
This commit is contained in:
Zdenek Kabelac 2012-02-01 13:47:27 +00:00
parent 90fd0f5b42
commit 02f6f4902f
2 changed files with 27 additions and 0 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.90 -
===================================
Disable partial activation for thin LVs and LVs with all missing segments.
Do not print warning for pv_min_size set in range between 512KB and 2MB.
Clean up systemd unit ordering and requirements.
Fix lcov reports when srcdir != builddir.

View File

@ -1373,6 +1373,8 @@ int add_areas_line(struct dev_manager *dm, struct lv_segment *seg,
char *dlid;
struct stat info;
const char *name;
unsigned num_error_areas = 0;
unsigned num_existing_areas = 0;
/* FIXME Avoid repeating identical stat in dm_tree_node_add_target_area */
for (s = start_area; s < areas; s++) {
@ -1388,10 +1390,12 @@ int add_areas_line(struct dev_manager *dm, struct lv_segment *seg,
}
if (!_add_error_area(dm, node, seg, s))
return_0;
num_error_areas++;
} else if (seg_type(seg, s) == AREA_PV) {
if (!dm_tree_node_add_target_area(node, dev_name(seg_dev(seg, s)), NULL,
(seg_pv(seg, s)->pe_start + (extent_size * seg_pe(seg, s)))))
return_0;
num_existing_areas++;
} else if (seg_is_raid(seg)) {
/*
* RAID can handle unassigned areas. It simple puts
@ -1436,6 +1440,28 @@ int add_areas_line(struct dev_manager *dm, struct lv_segment *seg,
}
}
if (num_error_areas) {
/* Thins currently do not support partial activation */
if (lv_is_thin_type(seg->lv)) {
log_error("Cannot activate %s%s: pool incomplete.",
seg->lv->vg->name, seg->lv->name);
return 0;
}
/*
* Mirrors activate LVs replaced with error targets
*
* TODO: Can we eventually skip to activate such LVs ?
*/
if (!num_existing_areas &&
!strstr(seg->lv->name, "_mimage_") &&
!((name = strstr(seg->lv->name, "_mlog")) && !name[5])) {
log_error("Cannot activate %s/%s: all segments missing.",
seg->lv->vg->name, seg->lv->name);
return 0;
}
}
return 1;
}