diff options
author | le <le@FreeBSD.org> | 2005-11-24 15:11:41 +0000 |
---|---|---|
committer | le <le@FreeBSD.org> | 2005-11-24 15:11:41 +0000 |
commit | de257b1b7afafb048a91581cf9ab5afcb9df7886 (patch) | |
tree | 2d46cba540adc78be7ef6af27da578c08b78d195 /sys/modules/geom | |
parent | 7e502ce9b38dde38572399757657ecc978992aaa (diff) | |
download | FreeBSD-src-de257b1b7afafb048a91581cf9ab5afcb9df7886.zip FreeBSD-src-de257b1b7afafb048a91581cf9ab5afcb9df7886.tar.gz |
Since we want a vinum geom created anytime the module loads, move
the geom creation to a seperate init function and ignore the tasting.
The config is now parsed only in the vinumdrive geom, which hopefully
fixes the problem, that the drive class tasted before the vinum class
had a chance, for good.
Also restore the behaviour that the module can be loaded at boot time
and on a running system.
Diffstat (limited to 'sys/modules/geom')
-rw-r--r-- | sys/modules/geom/geom_vinum/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/geom/geom_vinum/Makefile b/sys/modules/geom/geom_vinum/Makefile index 190ba55..fe14515 100644 --- a/sys/modules/geom/geom_vinum/Makefile +++ b/sys/modules/geom/geom_vinum/Makefile @@ -3,7 +3,7 @@ .PATH: ${.CURDIR}/../../../geom/vinum KMOD= geom_vinum -SRCS= geom_vinum_drive.c geom_vinum.c geom_vinum_plex.c \ +SRCS= geom_vinum.c geom_vinum_drive.c geom_vinum_plex.c \ geom_vinum_volume.c geom_vinum_subr.c geom_vinum_raid5.c \ geom_vinum_share.c geom_vinum_list.c geom_vinum_rm.c \ geom_vinum_init.c geom_vinum_state.c geom_vinum_rename.c \ |