From owner-p4-projects@FreeBSD.ORG Sun Jun 6 19:18:49 2010 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 983A81065677; Sun, 6 Jun 2010 19:18:49 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 440B81065674 for ; Sun, 6 Jun 2010 19:18:49 +0000 (UTC) (envelope-from kibab@FreeBSD.org) Received: from repoman.freebsd.org (unknown [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 314C48FC23 for ; Sun, 6 Jun 2010 19:18:49 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o56JInTW024696 for ; Sun, 6 Jun 2010 19:18:49 GMT (envelope-from kibab@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o56JImNm024694 for perforce@freebsd.org; Sun, 6 Jun 2010 19:18:48 GMT (envelope-from kibab@FreeBSD.org) Date: Sun, 6 Jun 2010 19:18:48 GMT Message-Id: <201006061918.o56JImNm024694@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to kibab@FreeBSD.org using -f From: Ilya Bakulin To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 179264 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Jun 2010 19:18:49 -0000 http://p4web.freebsd.org/@@179264?ac=10 Change 179264 by kibab@kibab_kibab-nb on 2010/06/06 19:17:48 Feature set: GEOM classes, part 1. Affected files ... .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/bde/g_bde.c#2 edit .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/concat/g_concat.c#2 edit .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/eli/g_eli.c#2 edit .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/gate/g_gate.c#2 edit .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/journal/g_journal.c#2 edit .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/label/g_label.c#2 edit .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/linux_lvm/g_linux_lvm.c#2 edit .. //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/mirror/g_mirror.c#2 edit Differences ... ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/bde/g_bde.c#2 (text+ko) ==== @@ -41,6 +41,7 @@ #include #include #include +#include #include #include @@ -48,6 +49,8 @@ #include #define BDE_CLASS_NAME "BDE" +FEATURE(geom_bde, "Geom Based Disk Encryption"); + static void g_bde_start(struct bio *bp) { ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/concat/g_concat.c#2 (text+ko) ==== @@ -39,6 +39,7 @@ #include #include +FEATURE(geom_concat, "Geom concatenation support"); static MALLOC_DEFINE(M_CONCAT, "concat_data", "GEOM_CONCAT Data"); ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/eli/g_eli.c#2 (text+ko) ==== @@ -51,6 +51,7 @@ #include #include +FEATURE(geom_eli, "Geom crypto module"); MALLOC_DEFINE(M_ELI, "eli data", "GEOM_ELI Data"); ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/gate/g_gate.c#2 (text+ko) ==== @@ -53,6 +53,8 @@ #include #include +FEATURE(geom_gate, "Geom Gate"); + static MALLOC_DEFINE(M_GATE, "gg_data", "GEOM Gate Data"); SYSCTL_DECL(_kern_geom); ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/journal/g_journal.c#2 (text+ko) ==== @@ -55,6 +55,7 @@ #include +FEATURE(geom_journal, "Geom journaling support"); /* * On-disk journal format: ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/label/g_label.c#2 (text+ko) ==== @@ -36,10 +36,12 @@ #include #include #include +#include #include #include #include +FEATURE(geom_label, "Geom labeling support"); SYSCTL_DECL(_kern_geom); SYSCTL_NODE(_kern_geom, OID_AUTO, label, CTLFLAG_RW, 0, "GEOM_LABEL stuff"); ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/linux_lvm/g_linux_lvm.c#2 (text+ko) ==== @@ -42,6 +42,8 @@ #include +FEATURE(geom_linux_lvm, "Geom Linux LVM support"); + /* Declare malloc(9) label */ static MALLOC_DEFINE(M_GLLVM, "gllvm", "GEOM_LINUX_LVM Data"); ==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/geom/mirror/g_mirror.c#2 (text+ko) ==== @@ -45,6 +45,7 @@ #include #include +FEATURE(geom_mirror, "Geom mirroring support"); static MALLOC_DEFINE(M_MIRROR, "mirror_data", "GEOM_MIRROR Data");