mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-02 01:18:26 +03:00
pre-release
This commit is contained in:
parent
937a21f0d2
commit
606d085835
@ -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 -
|
||||
====================================
|
||||
Speedup consequent activation calls by using internal cookie.
|
||||
Add internal lvm library cookie.
|
||||
Speedup command processing by caching resolved config tree.
|
||||
Version 2.02.80 - 10th January 2011
|
||||
===================================
|
||||
Use same dm cookie for consecutive dm ops in same VG to reduce udev waits.
|
||||
Speed up command processing by caching resolved config tree.
|
||||
Pass config_tree to renamed function import_vg_from_config_tree().
|
||||
Detect NULL handle in get_property().
|
||||
Fix superfluous /usr in ocf_scriptdir instalation path.
|
||||
Add --with-ocfdir configurable option.
|
||||
Add aclocal.m4 (for pkgconfig).
|
||||
Fix memory leak in filter creation error path.
|
||||
Add missing tests in _setup_task().
|
||||
Fail poll daemon creation when lvmcache_init() fails.
|
||||
Return defined value for errors in _copy_percent() and _snap_percent().
|
||||
Correct return code of cmirrord when issuing 'start' when already running.
|
||||
Fix wrongly paired unlocking of global lock in pvchange. (2.02.66)
|
||||
Fix memory leak in persistent filter creation error path.
|
||||
Check for errors setting up dm_task struct in _setup_task().
|
||||
Fail polldaemon creation when lvmcache_init() fails.
|
||||
Return PERCENT_INVALID for errors in _copy_percent() and _snap_percent().
|
||||
Remove some unused variables.
|
||||
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.
|
||||
Detect errors from dm_task_set calls in _get_device_info (dmeventd).
|
||||
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.
|
||||
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
|
||||
PKGCONFIG
|
||||
REPLICATORS
|
||||
OCFDIR
|
||||
OCF
|
||||
MIRRORS
|
||||
LVM_RELEASE_DATE
|
||||
@ -797,6 +798,7 @@ with_replicators
|
||||
enable_readline
|
||||
enable_realtime
|
||||
enable_ocf
|
||||
with_ocfdir
|
||||
with_clvmd
|
||||
with_clvmd_pidfile
|
||||
enable_cmirrord
|
||||
@ -1536,6 +1538,8 @@ Optional Packages:
|
||||
[[TYPE=internal]]
|
||||
--with-replicators=TYPE replicator support: internal/shared/none
|
||||
[[TYPE=none]]
|
||||
--with-ocfdir=DIR install OCF files in DIR
|
||||
[[PREFIX/lib/ocf/resource.d/lvm2]]
|
||||
--with-clvmd=TYPE build cluster LVM Daemon
|
||||
The following cluster manager combinations are valid:
|
||||
* cman,gulm (RHEL4 or equivalent)
|
||||
@ -6908,6 +6912,14 @@ fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $OCF" >&5
|
||||
$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() {
|
||||
|
||||
@ -10282,6 +10294,7 @@ LVM_LIBAPI=`echo "$VER" | $AWK -F '[()]' '{print $2}'`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
################################################################################
|
||||
|
Loading…
Reference in New Issue
Block a user