mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-02 01:18:26 +03:00
lvmcache: update cached info properly when moving from VG to orphan while lvmetad is used
When lvmetad is used and lvmcache update function (lvmcache_update_vgname_and_id) was called to update existing lvmcache records, a condition was met which made to retun from the update function immediately, effectively making it NOOP. It seems there's no reason for such condition and lvmcache should be update appropriately even when lvmetad used as lvmcache may be reused, most notably in lvm shell. It's possible this is a remnant of the lvmetad development code which didn't get removed for some reason and the bug didn't get spotted because lvm shell is not used often (the condition dates back to 2012 or so). Example, lvmetad and lvm shell used: lvm> pvs PV VG Fmt Attr PSize PFree /dev/sda vg lvm2 a-- 124.00m 124.00m Before this patch: ================== lvm> vgremove vg Volume group "vg" successfully removed lvm> pvs With this patch applied: ======================== lvm> vgremove vg Volume group "vg" successfully removed lvm> pvs PV VG Fmt Attr PSize PFree /dev/sda lvm2 --- 128.00m 128.00m
This commit is contained in:
parent
8b965bd3d5
commit
3a42c13ccf
@ -1,5 +1,6 @@
|
|||||||
Version 2.02.133 -
|
Version 2.02.133 -
|
||||||
======================================
|
======================================
|
||||||
|
Fix lvmcache to move PV from VG to orphans if VG is removed and lvmetad used.
|
||||||
Fix lvmcache to not cache even invalid info about PV which got removed.
|
Fix lvmcache to not cache even invalid info about PV which got removed.
|
||||||
Support checking of memlock daemon counter.
|
Support checking of memlock daemon counter.
|
||||||
Allow all log levels to be used with the lvmetad -l option.
|
Allow all log levels to be used with the lvmetad -l option.
|
||||||
|
4
lib/cache/lvmcache.c
vendored
4
lib/cache/lvmcache.c
vendored
@ -1542,10 +1542,6 @@ int lvmcache_update_vgname_and_id(struct lvmcache_info *info, struct lvmcache_vg
|
|||||||
vgid = vgname;
|
vgid = vgname;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* When using lvmetad, the PV could not have become orphaned. */
|
|
||||||
if (lvmetad_active() && is_orphan_vg(vgname) && info->vginfo)
|
|
||||||
return 1;
|
|
||||||
|
|
||||||
/* If PV without mdas is already in a real VG, don't make it orphan */
|
/* If PV without mdas is already in a real VG, don't make it orphan */
|
||||||
if (is_orphan_vg(vgname) && info->vginfo &&
|
if (is_orphan_vg(vgname) && info->vginfo &&
|
||||||
mdas_empty_or_ignored(&info->mdas) &&
|
mdas_empty_or_ignored(&info->mdas) &&
|
||||||
|
Loading…
Reference in New Issue
Block a user