mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
snapshot: add synchronization point
Synchronize with udev logic before reusing device as snapshot. This patch tries to fix the problem with udev, where we manage to 'active' LV for clearing, then we deactivate such device and active again as member of 'origin&snapshot' tree all in 1 step. There needs to be a sync point where udev has time to remove all links, otherwise we race with scans and we may end-up with mysterious 'free' links in the system pointing to wrong dm names. This patch tries to fix failing topology cluster tests..
This commit is contained in:
parent
cf189a572a
commit
e217873ed6
@ -1,5 +1,6 @@
|
||||
Version 2.02.123 -
|
||||
=================================
|
||||
Add device synchronization point before activating a new snapshot.
|
||||
Add --withspaces to lvmconfig to add spaces in output for better readability.
|
||||
|
||||
Version 2.02.122 - 20th June 2015
|
||||
|
@ -7446,6 +7446,9 @@ static struct logical_volume *_lv_create_an_lv(struct volume_group *vg,
|
||||
goto deactivate_and_revert_new_lv; /* Let's retry on error path */
|
||||
}
|
||||
|
||||
/* Get in sync with deactivation, before reusing LV as snapshot */
|
||||
sync_local_dev_names(lv->vg->cmd);
|
||||
|
||||
/* Create zero origin volume for spare snapshot */
|
||||
if (lp->virtual_extents &&
|
||||
!(origin_lv = _create_virtual_origin(cmd, vg, lv->name,
|
||||
|
Loading…
Reference in New Issue
Block a user