From owner-freebsd-current@FreeBSD.ORG Fri Jun 12 09:18:08 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A9F4106564A; Fri, 12 Jun 2009 09:18:08 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 4829A8FC08; Fri, 12 Jun 2009 09:18:06 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from porto.topspin.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id MAA06875; Fri, 12 Jun 2009 12:18:05 +0300 (EEST) (envelope-from avg@freebsd.org) Received: from localhost.topspin.kiev.ua ([127.0.0.1] helo=edge.pp.kiev.ua) by porto.topspin.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1MF2th-000Hl9-EZ; Fri, 12 Jun 2009 12:18:05 +0300 Message-ID: <4A321D4C.8030107@freebsd.org> Date: Fri, 12 Jun 2009 12:18:04 +0300 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.21 (X11/20090406) MIME-Version: 1.0 To: freebsd-current@freebsd.org References: <4A2E9702.5040801@icyb.net.ua> In-Reply-To: <4A2E9702.5040801@icyb.net.ua> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Subject: Re: GEOM_VOL gc X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 09:18:08 -0000 on 09/06/2009 20:08 Andriy Gapon said the following: > It seems that it is time to garbage-collect GEOM_VOL option: > > $ glimpse -w GEOM_VOL > /usr/src-head/sys/conf/options: GEOM_VOL opt_geom.h > /usr/src-head/sys/conf/NOTES: options GEOM_VOL # Volume names > from UFS superblock > /usr/src-head/sys/conf/NOTES: # around. (See also option GEOM_VOL for a different > solution to this > /usr/src-head/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml: > GEOM_VOL genutzt, können die How about the following patch? I am not sure though what to do with de_DE.ISO8859-1/relnotes/common/new.sgml - I don't speak German and the file seems quite aged (or a template?). diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 7de53a2..0c612c8 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -160,7 +160,6 @@ options GEOM_STRIPE # Disk striping. options GEOM_SUNLABEL # Sun/Solaris partitioning options GEOM_UZIP # Read-only compressed disks options GEOM_VIRSTOR # Virtual storage. -options GEOM_VOL # Volume names from UFS superblock options GEOM_ZERO # Performance testing helper. # @@ -1158,7 +1157,7 @@ options PPS_SYNC # removed a disk drive, you may have had to rewrite your /etc/fstab # file, and also that you had to be careful when adding a new disk # as it may have been probed earlier and moved your device configuration -# around. (See also option GEOM_VOL for a different solution to this +# around. (See also option GEOM_LABEL for a different solution to this # problem.) # This old behavior is maintained as the default behavior. The unit diff --git a/sys/conf/options b/sys/conf/options index 883f7ae..b0ff6ab 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -104,7 +104,6 @@ GEOM_STRIPE opt_geom.h GEOM_SUNLABEL opt_geom.h GEOM_UZIP opt_geom.h GEOM_VIRSTOR opt_geom.h -GEOM_VOL opt_geom.h GEOM_ZERO opt_geom.h KDTRACE_HOOKS opt_kdtrace.h KSTACK_MAX_PAGES -- Andriy Gapon