From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24147 invoked by alias); 4 Nov 2007 19:16:35 -0000 Received: (qmail 24130 invoked by uid 9447); 4 Nov 2007 19:16:35 -0000 Date: Sun, 04 Nov 2007 19:16:00 -0000 Message-ID: <20071104191635.24128.qmail@sourceware.org> From: agk@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2 ./WHATS_NEW lib/format_text/export.c Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2007-11/txt/msg00005.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: agk@sourceware.org 2007-11-04 19:16:34 Modified files: . : WHATS_NEW lib/format_text: export.c Log message: Add LVM2 version to 'Generated by' comment in metadata. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.726&r2=1.727 http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/lib/format_text/export.c.diff?cvsroot=lvm2&r1=1.57&r2=1.58 --- LVM2/WHATS_NEW 2007/11/04 15:43:50 1.726 +++ LVM2/WHATS_NEW 2007/11/04 19:16:34 1.727 @@ -1,5 +1,6 @@ Version 2.02.29 - ================================== + Add LVM2 version to 'Generated by' comment in metadata. Fix error message when fixing up PV size in lvm2 metadata (2.02.11). Fix orphan-related locking in pvdisplay and pvs. Fix missing VG unlocks in some pvchange error paths. --- LVM2/lib/format_text/export.c 2007/10/12 14:29:32 1.57 +++ LVM2/lib/format_text/export.c 2007/11/04 19:16:34 1.58 @@ -20,6 +20,7 @@ #include "lvm-string.h" #include "segtype.h" #include "text_export.h" +#include "version.h" #include #include @@ -290,7 +291,7 @@ t = time(NULL); - outf(f, "# Generated by LVM2: %s", ctime(&t)); + outf(f, "# Generated by LVM2 version %s: %s", LVM_VERSION, ctime(&t)); outf(f, CONTENTS_FIELD " = \"" CONTENTS_VALUE "\""); outf(f, FORMAT_VERSION_FIELD " = %d", FORMAT_VERSION_VALUE); outnl(f);