GEOM_ZERO class for performance testing.

Approved by:	re (kensmith)
This commit is contained in:
pjd 2005-07-30 06:22:25 +00:00
parent b19d155069
commit 5da5bebd6d
4 changed files with 5 additions and 1 deletions

View File

@ -145,6 +145,7 @@ options GEOM_STRIPE # Disk striping.
options GEOM_SUNLABEL # Sun/Solaris partitioning
options GEOM_UZIP # Read-only compressed disks
options GEOM_VOL # Volume names from UFS superblock
options GEOM_ZERO # Peformance testing helper.
#
# The root device and filesystem type can be compiled in;

View File

@ -1060,6 +1060,7 @@ geom/raid3/g_raid3_ctl.c optional geom_raid3
geom/shsec/g_shsec.c optional geom_shsec
geom/stripe/g_stripe.c optional geom_stripe
geom/uzip/g_uzip.c optional geom_uzip
geom/zero/g_zero.c optional geom_zero
gnu/fs/ext2fs/ext2_alloc.c optional ext2fs \
warning "kernel contains GPL contaminated ext2fs filesystem"
gnu/fs/ext2fs/ext2_balloc.c optional ext2fs

View File

@ -90,6 +90,7 @@ GEOM_STRIPE opt_geom.h
GEOM_SUNLABEL opt_geom.h
GEOM_UZIP opt_geom.h
GEOM_VOL opt_geom.h
GEOM_ZERO opt_geom.h
KSTACK_MAX_PAGES
KSTACK_PAGES
KTRACE

View File

@ -19,6 +19,7 @@ SUBDIR= geom_apple \
geom_sunlabel \
geom_uzip \
geom_vinum \
geom_vol_ffs
geom_vol_ffs \
geom_zero
.include <bsd.subdir.mk>