summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlasdair Kergon <agk@redhat.com>2011-04-29 00:21:13 +0000
committerAlasdair Kergon <agk@redhat.com>2011-04-29 00:21:13 +0000
commit919ab56b6d5f855d33b3159cb125effe14e1160d (patch)
tree5f7ac59f4f44cdd4f0f6b4f2ab22972b2cb06fe3
parent9ecab00d26ab010850914891485cb1db30138208 (diff)
downloadlvm2-919ab56b6d5f855d33b3159cb125effe14e1160d.tar.gz
lvm2-919ab56b6d5f855d33b3159cb125effe14e1160d.tar.xz
lvm2-919ab56b6d5f855d33b3159cb125effe14e1160d.zip
pre-release clean-ups
-rw-r--r--WHATS_NEW37
-rw-r--r--WHATS_NEW_DM7
-rw-r--r--lib/locking/locking.h4
-rw-r--r--lib/log/log.c1
-rw-r--r--lib/mirror/mirrored.c8
-rw-r--r--lib/mm/memlock.c3
-rw-r--r--lib/snapshot/snapshot.c8
-rw-r--r--man/dmsetup.8.in2
-rw-r--r--man/lvm.conf.5.in7
-rw-r--r--tools/vgsplit.c4
10 files changed, 48 insertions, 33 deletions
diff --git a/WHATS_NEW b/WHATS_NEW
index bab4a6b1..4f721202 100644
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -3,9 +3,10 @@ Version 2.02.85 -
Add new obtain_device_list_from_udev setting to lvm.conf.
Obtain device list from udev by default if LVM2 is compiled with udev support.
Add nightly test for vgimportclone and querying of vgnames with duplicate pvs.
- Fix use of released memory when duplicate PV is found.
+ Avoid use of released memory when duplicate PV is found.
Add "devices/issue_discards" to lvm.conf.
Issue discards on lvremove, lvreduce, etc if enabled and supported.
+ Add seg_pe_ranges and devices fields to liblvm.
Fix incorrect tests for dm_snprintf() failure.
Fix some unmatching sign comparation gcc warnings in the code.
Allow lv_extend() to work on zero length intrinsically layered LVs.
@@ -17,7 +18,12 @@ Version 2.02.85 -
Replace several strncmp() calls with id_equal().
Fix lvmcache_info transfer to orphan_vginfo in _lvmcache_update_vgname().
Fix -Wold-style-definition gcc warnings.
+ Rename MIRROR_NOTSYNCED to LV_NOTSYNCED.
+ Fix _move_lv_segments to handle empty LVs.
Fixes for lvconvert (including --repair) of temporary mirror stacks.
+ Avoid potential loop when removing mirror images.
+ Fix mirror removal always to take account of preferences as to which.
+ Fix MIRRORED flag usage.
Mitigate annoying error warning from device is usable check if run as non-root.
Add missing \0 for grown debug object in _bitset_with_random_bits().
Fix allocation of system_id buffer in volume_group structure.
@@ -31,6 +37,7 @@ Version 2.02.85 -
Use new alloc_fid fn for common format instance initialisation.
Optimise _get_token() and _eat_space().
Add _lv_postorder_vg() to improve efficiency for all LVs in VG.
+ Add gdbinit script for debugging.
Use hash tables to speedup string search in vg_validate().
Refactor allocation of VG structure, add alloc_vg().
Avoid possible endless loop in _free_vginfo when 4 or more VGs have same name.
@@ -38,8 +45,7 @@ Version 2.02.85 -
Don't allocate unused VG mempool in _pvsegs_sub_single.
Do not send uninitialised bytes in local clvmd messages.
Support --help option for clvmd and return error for unknown option.
- Use system page size and not hardcoded value in locking code check.
- Fix reading of released memory for printing segment type.
+ Avoid reading freed memory when printing LV segment type.
Fix syslog initialisation in clvmd to respect lvm.conf setting.
Fix possible overflow in maximum stripe size and physical extent size.
Add test for failed allocation from dm_task_set_uuid() in dmeventd.
@@ -48,26 +54,31 @@ Version 2.02.85 -
Improve cling policy to recognise PVs already used during the transaction.
Improve normal allocation algorithm to include clinging to existing areas.
Add allocation/maximise_cling & mirror_logs_require_separate_pvs to lvm.conf.
- Fix metadata balance code to work with recent changes in metadata handling.
+ Adapt metadata balancing code to work with metadata handling changes.
Add old_id field to physical_volume and fix pvchange -u for recent changes.
Allow pvresize on a PV with two metadata areas.
Change pvcreate to use new metadata handling interface.
- Restructure existing pv_setup and pv_write fn, add pv_initialise fn.
+ Restructure existing pv_setup and pv_write and add pv_initialise.
Add internal interface to support adding and removing metadata areas.
Allow internal indexing of metadata areas (PV id + mda order).
Generalise internal format_instance infrastrusture for PV and VG use.
Handle decimal digits with --units instead of ignoring them silently.
Fix remaining warnings and compile with -Wpointer-arith.
- Fix gcc warnings for unused variables.
+ Fix gcc warnings for unused variables and const casts.
Add stack backtraces for error paths in process_each_lv().
- Fixing some const cast gcc warnings in the code.
- Use char* arithmetic in _text_write(), _text_read() & send_message().
- Fix compilation when devmapper is dissabled.
+ Temporarily suppress error from calling yes_no_prompt while locks are held.
+ Replace void* with char* arithmetic in _text_write, _text_read & send_message.
+ Fix compilation without DEVMAPPER_SUPPORT.
Remove fs_unlock() from lv_suspend error path.
- Change memory locking semantic and use critical sections.
- Add configurable pv_min_size to select block devices by its size.
- Add function to read 64bit ints from config find_config_tree_int64.
- Fix to make resuming exclusive cluster mirror use local target type.
+ Allow memory to stay locked between leaving and re-entering critical sections.
+ Rename memlock to critical_section throughout.
+ Make pv_min_size configurable and increase to 2048KB to exclude floppy drives.
+ Add find_config_tree_int64 to read 64-bit ints from config.
+ Ensure resuming exclusive cluster mirror continues to use local mirror target.
+ Clear temporary postorder LV status flags to allow re-use with same LV struct.
+ Remove invalid snapshot umount mesg which floods syslog from dmeventd plugin.
+ Add extended examples to pvmove man page.
+ Support LVM_TEST_DEVDIR env var for private /dev during testing.
Version 2.02.84 - 9th February 2011
===================================
diff --git a/WHATS_NEW_DM b/WHATS_NEW_DM
index 1a450261..c08c0d31 100644
--- a/WHATS_NEW_DM
+++ b/WHATS_NEW_DM
@@ -10,15 +10,18 @@ Version 1.02.64 -
Improve stack debug reporting in dm_task_create().
Fallback to control node creation only if node doesn't exist yet.
Change dm_hash API for binary data to accept const void *key.
- Fix memory access of empty params string in _reload_with_suppression_v4().
+ Fix uninitialised memory use with empty params in _reload_with_suppression_v4.
Lower severity of selabel_lookup and matchpathcon failure to log_debug.
+ Add dm_event_get_version to dmeventd for use with -R.
+ Avoid dmeventd core dumps when handling request with unknown command ID.
+ Have dmeventd -R start up even when no existing copy is running.
Accept multiple mapped device names on many dmsetup command lines.
Fix dm_udev_wait calls in dmsetup to occur before readahead display not after.
Include an implicit dm_task_update_nodes() within dm_udev_wait().
Fix _create_and_load_v4 not to lose the --addnodeoncreate setting (1.02.62).
Add inactive table query support for kernel driver >= 4.11.6 (RHEL 5.7).
Log debug open_count in _node_has_closed_parents().
- Change dm_report_field_string() API to accept const char *const *data.
+ Add a const to dm_report_field_string() data parameter.
Version 1.02.63 - 9th February 2011
===================================
diff --git a/lib/locking/locking.h b/lib/locking/locking.h
index af99464e..ab376fd4 100644
--- a/lib/locking/locking.h
+++ b/lib/locking/locking.h
@@ -39,8 +39,8 @@ int remote_lock_held(const char *vol, int *exclusive);
* acquired in alphabetical order of 'vol' (to avoid deadlocks), with
* VG_ORPHANS last.
*
- * Use VG_SYNC_NAMES to wait for any outstanding asynchronous /dev nodes
- * events to complete.
+ * Use VG_SYNC_NAMES to ensure /dev is up-to-date for example, with udev,
+ * by waiting for any asynchronous events issued to have completed.
*
* LCK_LV:
* Lock/unlock an individual logical volume
diff --git a/lib/log/log.c b/lib/log/log.c
index ff98cdd3..34c92fee 100644
--- a/lib/log/log.c
+++ b/lib/log/log.c
@@ -234,6 +234,7 @@ void print_log(int level, const char *file, int line, int dm_errno,
message = &buf2[0];
}
+/* FIXME Avoid pointless use of message buffer when it'll never be read! */
if (_store_errmsg && (level <= _LOG_ERR) &&
_lvm_errmsg_len < MAX_ERRMSG_LEN) {
msglen = strlen(message);
diff --git a/lib/mirror/mirrored.c b/lib/mirror/mirrored.c
index 3c68adab..be9e540f 100644
--- a/lib/mirror/mirrored.c
+++ b/lib/mirror/mirrored.c
@@ -613,11 +613,11 @@ static struct segtype_handler _mirrored_ops = {
.target_percent = _mirrored_target_percent,
.target_present = _mirrored_target_present,
.check_transient_status = _mirrored_transient_status,
-#ifdef DMEVENTD
+# ifdef DMEVENTD
.target_monitored = _target_registered,
.target_monitor_events = _target_monitor_events,
.target_unmonitor_events = _target_unmonitor_events,
-#endif
+# endif /* DMEVENTD */
#endif
.modules_needed = _mirrored_modules_needed,
.destroy = _mirrored_destroy,
@@ -642,10 +642,10 @@ struct segment_type *init_segtype(struct cmd_context *cmd)
segtype->flags = SEG_AREAS_MIRRORED;
#ifdef DEVMAPPER_SUPPORT
-#ifdef DMEVENTD
+# ifdef DMEVENTD
if (_get_mirror_dso_path(cmd))
segtype->flags |= SEG_MONITORED;
-#endif
+# endif /* DMEVENTD */
#endif
log_very_verbose("Initialised segtype: %s", segtype->name);
diff --git a/lib/mm/memlock.c b/lib/mm/memlock.c
index 70abb1c0..3c3298a0 100644
--- a/lib/mm/memlock.c
+++ b/lib/mm/memlock.c
@@ -360,7 +360,8 @@ static void _unlock_mem(struct cmd_context *cmd)
"Maps lock %ld < unlock %ld",
(long)_mstats, (long)unlock_mstats);
else
- log_debug("Maps lock %ld < unlock %ld, 1 page difference!",
+ /* FIXME Believed due to incorrect use of yes_no_prompt while locks held */
+ log_debug("Suppressed internal error: Maps lock %ld < unlock %ld, a one-page difference.",
(long)_mstats, (long)unlock_mstats);
}
}
diff --git a/lib/snapshot/snapshot.c b/lib/snapshot/snapshot.c
index 1b8b20ff..a2851b45 100644
--- a/lib/snapshot/snapshot.c
+++ b/lib/snapshot/snapshot.c
@@ -232,11 +232,11 @@ static struct segtype_handler _snapshot_ops = {
#ifdef DEVMAPPER_SUPPORT
.target_percent = _snap_target_percent,
.target_present = _snap_target_present,
-#ifdef DMEVENTD
+# ifdef DMEVENTD
.target_monitored = _target_registered,
.target_monitor_events = _target_register_events,
.target_unmonitor_events = _target_unregister_events,
-#endif
+# endif /* DMEVENTD */
#endif
.modules_needed = _snap_modules_needed,
.destroy = _snap_destroy,
@@ -261,10 +261,10 @@ struct segment_type *init_segtype(struct cmd_context *cmd)
segtype->flags = SEG_SNAPSHOT;
#ifdef DEVMAPPER_SUPPORT
-#ifdef DMEVENTD
+# ifdef DMEVENTD
if (_get_snapshot_dso_path(cmd))
segtype->flags |= SEG_MONITORED;
-#endif
+# endif /* DMEVENTD */
#endif
log_very_verbose("Initialised segtype: %s", segtype->name);
diff --git a/man/dmsetup.8.in b/man/dmsetup.8.in
index 58e6dd5f..6d9701fa 100644
--- a/man/dmsetup.8.in
+++ b/man/dmsetup.8.in
@@ -290,7 +290,7 @@ Use with care! From version 4.8.0 onwards, if devices can't
be removed because uninterruptible processes are waiting for
I/O to return from them, adding --force will replace the table
with one that fails all I/O, which might allow the
-process to be killed. This also runs \fBmknodes\fP afterward.
+process to be killed. This also runs \fBmknodes\fP afterwards.
.IP \fBrename
.I device_name new_name
.br
diff --git a/man/lvm.conf.5.in b/man/lvm.conf.5.in
index 66198351..3137f297 100644
--- a/man/lvm.conf.5.in
+++ b/man/lvm.conf.5.in
@@ -175,10 +175,9 @@ altogether.
\fBpv_min_size\fP \(em
Minimal size (in KB) of the block device which can be used as a PV.
In clustered environment all nodes have to use the same value.
-Any value smaller than 512KB is ignored. An example to
-ignore devices smaller than 2MB (i.e. floppy drives):
-.IP
-pv_min_size = 2048
+Any value smaller than 512KB is ignored. Up to and include version 2.02.84
+the default was 512KB. From 2.02.85 onwards it was changed to 2MB to
+avoid floppy drives by default.
.IP
\fBissue_discards\fP \(em
Issue discards to a logical volumes's underlying physical volume(s) when the
diff --git a/tools/vgsplit.c b/tools/vgsplit.c
index b0494a0d..f8660e1d 100644
--- a/tools/vgsplit.c
+++ b/tools/vgsplit.c
@@ -488,8 +488,8 @@ int vgsplit(struct cmd_context *cmd, int argc, char **argv)
bad:
/*
- * Note: as vg_to is referencing moved elements from vg_from
- * the order of free_vg calls is mandatory.
+ * vg_to references elements moved from vg_from
+ * so vg_to has to be freed first.
*/
unlock_and_free_vg(cmd, vg_to, vg_name_to);
unlock_and_free_vg(cmd, vg_from, vg_name_from);