From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16614 invoked by alias); 9 Jul 2009 22:34:04 -0000 Received: (qmail 16599 invoked by uid 9805); 9 Jul 2009 22:34:03 -0000 Date: Thu, 09 Jul 2009 22:34:00 -0000 Message-ID: <20090709223403.16597.qmail@sourceware.org> From: snitzer@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2 ./WHATS_NEW lib/filters/filter.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: 2009-07/txt/msg00046.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: snitzer@sourceware.org 2009-07-09 22:34:02 Modified files: . : WHATS_NEW lib/filters : filter.c Log message: Add extended device (blkext) and MD partition (mdp) types to filters. Both types were added with a 'max_partitions' of 1 because these devices are _not_ partitionable (they are the partitions). Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.1173&r2=1.1174 http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/lib/filters/filter.c.diff?cvsroot=lvm2&r1=1.47&r2=1.48 --- LVM2/WHATS_NEW 2009/07/09 11:29:41 1.1173 +++ LVM2/WHATS_NEW 2009/07/09 22:34:02 1.1174 @@ -1,5 +1,6 @@ Version 2.02.49 - ================================ + Add extended device (blkext) and MD partition (mdp) types to filters. Fix and precise metadata read errors for segment areas. Fix segment metadata read function errors to use proper segment name. Add parent node to config_node structure. --- LVM2/lib/filters/filter.c 2009/04/16 10:16:14 1.47 +++ LVM2/lib/filters/filter.c 2009/07/09 22:34:02 1.48 @@ -57,6 +57,7 @@ {"ide", 64}, /* IDE disk */ {"sd", 16}, /* SCSI disk */ {"md", 1}, /* Multiple Disk driver (SoftRAID) */ + {"mdp", 1}, /* Partitionable MD */ {"loop", 1}, /* Loop device */ {"dasd", 4}, /* DASD disk (IBM S/390, zSeries) */ {"dac960", 8}, /* DAC960 */ @@ -79,6 +80,7 @@ {"ps3disk", 16}, /* PlayStation 3 internal disk */ {"virtblk", 8}, /* VirtIO disk */ {"mmc", 16}, /* MMC block device */ + {"blkext", 1}, /* Extended device partitions */ {NULL, 0} };