Rename geom_lvm(4) to geom_linux_lvm(4).

Requested by:	des, phk
This commit is contained in:
Andrew Thompson 2008-02-20 07:50:13 +00:00
parent 1332875338
commit 1669d8afc6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=176418
6 changed files with 16 additions and 4 deletions

View file

@ -22,6 +22,10 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 8.x IS SLOW:
to maximize performance. (To disable malloc debugging, run
ln -s aj /etc/malloc.conf.)
20080220:
The new geom_lvm(4) geom class has been renamed to geom_linux_lvm(4),
likewise the kernel option is now GEOM_LINUX_LVM.
20080211:
The default NFS mount mode has changed from UDP to TCP for
increased reliability. If you rely on (insecurely) NFS

View file

@ -94,7 +94,7 @@ MAN= aac.4 \
gem.4 \
geom.4 \
geom_fox.4 \
geom_lvm.4 \
geom_linux_lvm.4 \
geom_uzip.4 \
gif.4 \
gre.4 \

View file

@ -140,7 +140,7 @@ options GEOM_FOX # Redundant path mitigation
options GEOM_GATE # Userland services.
options GEOM_JOURNAL # Journaling.
options GEOM_LABEL # Providers labelization.
options GEOM_LVM # LVM2 volumes
options GEOM_LINUX_LVM # Linux LVM2 volumes
options GEOM_MBR # DOS/MBR partitioning
options GEOM_MIRROR # Disk mirroring.
options GEOM_MULTIPATH # Disk multipath

View file

@ -1298,7 +1298,7 @@ geom/label/g_label_msdosfs.c optional geom_label
geom/label/g_label_ntfs.c optional geom_label
geom/label/g_label_reiserfs.c optional geom_label
geom/label/g_label_ufs.c optional geom_label
geom/lvm/g_lvm.c optional geom_lvm
geom/linux_lvm/g_linux_lvm.c optional geom_linux_lvm
geom/mirror/g_mirror.c optional geom_mirror
geom/mirror/g_mirror_ctl.c optional geom_mirror
geom/multipath/g_multipath.c optional geom_multipath

View file

@ -85,7 +85,7 @@ GEOM_FOX opt_geom.h
GEOM_GATE opt_geom.h
GEOM_JOURNAL opt_geom.h
GEOM_LABEL opt_geom.h
GEOM_LVM opt_geom.h
GEOM_LINUX_LVM opt_geom.h
GEOM_MBR opt_geom.h
GEOM_MIRROR opt_geom.h
GEOM_MULTIPATH opt_geom.h

View file

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../geom/linux_lvm
KMOD= geom_linux_lvm
SRCS= g_linux_lvm.c
.include <bsd.kmod.mk>