mirror of
git://sourceware.org/git/lvm2.git
synced 2025-02-01 09:47:48 +03:00
pre-release
This commit is contained in:
parent
77e3610e1a
commit
437dac07eb
@ -1 +1 @@
|
|||||||
1.02.61-cvs (2010-12-21)
|
1.02.61-cvs (2011-01-10)
|
||||||
|
23
WHATS_NEW
23
WHATS_NEW
@ -1,19 +1,20 @@
|
|||||||
Version 2.02.80 -
|
Version 2.02.80 - 10th January 2011
|
||||||
====================================
|
===================================
|
||||||
Speedup consequent activation calls by using internal cookie.
|
Use same dm cookie for consecutive dm ops in same VG to reduce udev waits.
|
||||||
Add internal lvm library cookie.
|
Speed up command processing by caching resolved config tree.
|
||||||
Speedup command processing by caching resolved config tree.
|
|
||||||
Pass config_tree to renamed function import_vg_from_config_tree().
|
Pass config_tree to renamed function import_vg_from_config_tree().
|
||||||
Detect NULL handle in get_property().
|
Detect NULL handle in get_property().
|
||||||
Fix superfluous /usr in ocf_scriptdir instalation path.
|
Fix superfluous /usr in ocf_scriptdir instalation path.
|
||||||
Add --with-ocfdir configurable option.
|
Add --with-ocfdir configurable option.
|
||||||
Add aclocal.m4 (for pkgconfig).
|
Add aclocal.m4 (for pkgconfig).
|
||||||
Fix memory leak in filter creation error path.
|
Fix memory leak in persistent filter creation error path.
|
||||||
Add missing tests in _setup_task().
|
Check for errors setting up dm_task struct in _setup_task().
|
||||||
Fail poll daemon creation when lvmcache_init() fails.
|
Fail polldaemon creation when lvmcache_init() fails.
|
||||||
Return defined value for errors in _copy_percent() and _snap_percent().
|
Return PERCENT_INVALID for errors in _copy_percent() and _snap_percent().
|
||||||
Correct return code of cmirrord when issuing 'start' when already running.
|
Remove some unused variables.
|
||||||
Fix wrongly paired unlocking of global lock in pvchange. (2.02.66)
|
Improve general lvconvert man page description.
|
||||||
|
Return 0 from cmirrord initscript 'start' if daemon is already running.
|
||||||
|
Fix wrongly paired unlocking of VG_GLOBAL in pvchange. (2.02.66)
|
||||||
Add backtraces for backup and backup_remove fail paths.
|
Add backtraces for backup and backup_remove fail paths.
|
||||||
Detect errors from dm_task_set calls in _get_device_info (dmeventd).
|
Detect errors from dm_task_set calls in _get_device_info (dmeventd).
|
||||||
Add backtraces for archive and backup_locally in check_current_backup().
|
Add backtraces for archive and backup_locally in check_current_backup().
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Version 1.02.61 -
|
Version 1.02.61 - 10th January 2011
|
||||||
====================================
|
===================================
|
||||||
Add DM_COOKIE_AUTO_CREATE to libdevmapper.h.
|
Add DM_COOKIE_AUTO_CREATE to libdevmapper.h.
|
||||||
Export DM_CONTROL_NODE_UMASK and use it while creating /dev/mapper/control.
|
Export DM_CONTROL_NODE_UMASK and use it while creating /dev/mapper/control.
|
||||||
|
|
||||||
|
13
configure
vendored
13
configure
vendored
@ -619,6 +619,7 @@ PTHREAD_LIBS
|
|||||||
POOL
|
POOL
|
||||||
PKGCONFIG
|
PKGCONFIG
|
||||||
REPLICATORS
|
REPLICATORS
|
||||||
|
OCFDIR
|
||||||
OCF
|
OCF
|
||||||
MIRRORS
|
MIRRORS
|
||||||
LVM_RELEASE_DATE
|
LVM_RELEASE_DATE
|
||||||
@ -797,6 +798,7 @@ with_replicators
|
|||||||
enable_readline
|
enable_readline
|
||||||
enable_realtime
|
enable_realtime
|
||||||
enable_ocf
|
enable_ocf
|
||||||
|
with_ocfdir
|
||||||
with_clvmd
|
with_clvmd
|
||||||
with_clvmd_pidfile
|
with_clvmd_pidfile
|
||||||
enable_cmirrord
|
enable_cmirrord
|
||||||
@ -1536,6 +1538,8 @@ Optional Packages:
|
|||||||
[[TYPE=internal]]
|
[[TYPE=internal]]
|
||||||
--with-replicators=TYPE replicator support: internal/shared/none
|
--with-replicators=TYPE replicator support: internal/shared/none
|
||||||
[[TYPE=none]]
|
[[TYPE=none]]
|
||||||
|
--with-ocfdir=DIR install OCF files in DIR
|
||||||
|
[[PREFIX/lib/ocf/resource.d/lvm2]]
|
||||||
--with-clvmd=TYPE build cluster LVM Daemon
|
--with-clvmd=TYPE build cluster LVM Daemon
|
||||||
The following cluster manager combinations are valid:
|
The following cluster manager combinations are valid:
|
||||||
* cman,gulm (RHEL4 or equivalent)
|
* cman,gulm (RHEL4 or equivalent)
|
||||||
@ -6908,6 +6912,14 @@ fi
|
|||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $OCF" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $OCF" >&5
|
||||||
$as_echo "$OCF" >&6; }
|
$as_echo "$OCF" >&6; }
|
||||||
|
|
||||||
|
# Check whether --with-ocfdir was given.
|
||||||
|
if test "${with_ocfdir+set}" = set; then :
|
||||||
|
withval=$with_ocfdir; OCFDIR=$withval
|
||||||
|
else
|
||||||
|
OCFDIR='${prefix}/lib/ocf/resource.d/lvm2'
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
pkg_config_init() {
|
pkg_config_init() {
|
||||||
|
|
||||||
@ -10282,6 +10294,7 @@ LVM_LIBAPI=`echo "$VER" | $AWK -F '[()]' '{print $2}'`
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
Loading…
x
Reference in New Issue
Block a user