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

Fix clvmd automatic target module loading crash.

This commit is contained in:
Milan Broz 2010-01-13 17:40:17 +00:00
parent c52678ee9b
commit 43b24f7c61
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.58 -
===================================
Fix clvmd automatic target module loading crash.
Fix allocation code not to stop at the first area of a PV that fits.
Version 2.02.57 - 12th January 2010

View File

@ -186,7 +186,8 @@ void reset_locking(void)
_vg_lock_count = 0;
_vg_write_lock_held = 0;
_locking.reset_locking();
if (_locking.reset_locking)
_locking.reset_locking();
if (was_locked)
_unblock_signals();