diff --git a/VERSION b/VERSION index 8c1db5361..7f751a2e4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.02.101(2)-git (2013-09-20) +2.02.102(2)-git (2013-09-23) diff --git a/VERSION_DM b/VERSION_DM index 10b23208f..461c7751d 100644 --- a/VERSION_DM +++ b/VERSION_DM @@ -1 +1 @@ -1.02.80-git (2013-09-20) +1.02.81-git (2013-09-23) diff --git a/WHATS_NEW b/WHATS_NEW index a3744dc44..2263face0 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,4 +1,4 @@ -Version 2.02.102 +Version 2.02.102 - 23rd September 2013 ====================================== Fix missing build dependency for scripts subdir in Makefile. Extend lv_info() for more efficient lv_is_active_locally() check. diff --git a/WHATS_NEW_DM b/WHATS_NEW_DM index 176234c77..f209c09b1 100644 --- a/WHATS_NEW_DM +++ b/WHATS_NEW_DM @@ -1,3 +1,7 @@ +Version 1.02.81 - 23rd September 2013 +===================================== + Tidy dmeventd fifo initialisation. + Version 1.02.80 - 20th September 2013 ===================================== Detect invalid sector supplied to 'dmsetup message'. diff --git a/lib/format_text/archiver.c b/lib/format_text/archiver.c index e3e777733..f41bffcf5 100644 --- a/lib/format_text/archiver.c +++ b/lib/format_text/archiver.c @@ -354,7 +354,9 @@ int backup_restore_vg(struct cmd_context *cmd, struct volume_group *vg, int drop if (drop_lvmetad && lvmetad_active()) { struct volume_group *vg_lvmetad = lvmetad_vg_lookup(cmd, vg->name, NULL); if (vg_lvmetad) { - lvmetad_vg_remove(vg_lvmetad); + /* FIXME Cope with failure to update lvmetad */ + if (!lvmetad_vg_remove(vg_lvmetad)) + stack; release_vg(vg_lvmetad); } }