From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23661 invoked by alias); 17 Mar 2010 14:45:30 -0000 Received: (qmail 23647 invoked by uid 9664); 17 Mar 2010 14:45:29 -0000 Date: Wed, 17 Mar 2010 14:45:00 -0000 Message-ID: <20100317144529.23645.qmail@sourceware.org> From: mbroz@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2 ./WHATS_NEW liblvm/lvm_base.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: 2010-03/txt/msg00038.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: mbroz@sourceware.org 2010-03-17 14:45:28 Modified files: . : WHATS_NEW liblvm : lvm_base.c Log message: Disable long living process flag in lvm2app. This option should be configurable, but for now do not set it at all. (lvm2app is used in udisks probers and there cac cause several nasty races when trying to update lvmcache during rescan.) Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.1466&r2=1.1467 http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/liblvm/lvm_base.c.diff?cvsroot=lvm2&r1=1.14&r2=1.15 --- LVM2/WHATS_NEW 2010/03/17 14:44:18 1.1466 +++ LVM2/WHATS_NEW 2010/03/17 14:45:28 1.1467 @@ -1,5 +1,6 @@ Version 2.02.63 - ================================ + Disable long living process flag in lvm2app. Fix pvcreate device md filter check. Suppress repeated errors about the same missing PV uuids. Bypass full device scans when using internally-cached VG metadata. --- LVM2/liblvm/lvm_base.c 2010/01/22 09:45:29 1.14 +++ LVM2/liblvm/lvm_base.c 2010/03/17 14:45:28 1.15 @@ -32,7 +32,8 @@ /* create context */ /* FIXME: split create_toolcontext */ - cmd = create_toolcontext(1, system_dir); + /* FIXME: make all globals configurable */ + cmd = create_toolcontext(0, system_dir); if (!cmd) return NULL;