From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9051 invoked by alias); 18 Feb 2011 14:26:33 -0000 Received: (qmail 9032 invoked by uid 9737); 18 Feb 2011 14:26:32 -0000 Date: Fri, 18 Feb 2011 14:26:00 -0000 Message-ID: <20110218142632.9030.qmail@sourceware.org> From: zkabelac@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2 ./WHATS_NEW lib/activate/activate.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: 2011-02/txt/msg00038.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: zkabelac@sourceware.org 2011-02-18 14:26:31 Modified files: . : WHATS_NEW lib/activate : activate.c Log message: Remove fs_unlock after failed suspend Explicit fs_unlock() after failed suspend is not need - as it will happen automatically with nearest lv_info() or vg_unlock(). Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.1916&r2=1.1917 http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/lib/activate/activate.c.diff?cvsroot=lvm2&r1=1.193&r2=1.194 --- LVM2/WHATS_NEW 2011/02/18 14:16:11 1.1916 +++ LVM2/WHATS_NEW 2011/02/18 14:26:31 1.1917 @@ -1,5 +1,6 @@ Version 2.02.85 - =================================== + 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. --- LVM2/lib/activate/activate.c 2011/02/18 14:16:11 1.193 +++ LVM2/lib/activate/activate.c 2011/02/18 14:26:31 1.194 @@ -1126,7 +1126,6 @@ if (!_lv_suspend_lv(lv, origin_only, lockfs, flush_required)) { critical_section_dec(cmd); - fs_unlock(); goto out; }