From owner-cvs-src@FreeBSD.ORG Mon Feb 11 03:05:12 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0390B16A419; Mon, 11 Feb 2008 03:05:12 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E42E213C4E1; Mon, 11 Feb 2008 03:05:11 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m1B35BSa022005; Mon, 11 Feb 2008 03:05:11 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m1B35BFm022000; Mon, 11 Feb 2008 03:05:11 GMT (envelope-from thompsa) Message-Id: <200802110305.m1B35BFm022000@repoman.freebsd.org> From: Andrew Thompson Date: Mon, 11 Feb 2008 03:05:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom/lvm g_lvm.c g_lvm.h src/share/man/man4 geom_lvm.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Feb 2008 03:05:12 -0000 thompsa 2008-02-11 03:05:11 UTC FreeBSD src repository Added files: sys/geom/lvm g_lvm.c g_lvm.h share/man/man4 geom_lvm.4 Log: Add a geom class to map Linux LVM logical volumes. The logical disks will appear as /dev/lvm/-, for instance /dev/lvm/vg0-home. GLVM currently supports linear stripes with segments on multiple physical disks. The metadata is read only, logical volumes can not be allocated or resized. Reviewed by: Ivan Voras Revision Changes Path 1.1 +88 -0 src/share/man/man4/geom_lvm.4 (new) 1.1 +1177 -0 src/sys/geom/lvm/g_lvm.c (new) 1.1 +113 -0 src/sys/geom/lvm/g_lvm.h (new)