svn commit: r265538 - stable/8/sys/conf

Marius Strobl marius at FreeBSD.org
Wed May 7 09:56:30 UTC 2014


Author: marius
Date: Wed May  7 09:56:28 2014
New Revision: 265538
URL: http://svnweb.freebsd.org/changeset/base/265538

Log:
  MFC: r265248
  
  Allow GEOM_VINUM to be statically compiled into the kernel.
  
  Submitted by:	gleb

Modified:
  stable/8/sys/conf/NOTES
  stable/8/sys/conf/files
  stable/8/sys/conf/options
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/conf/   (props changed)

Modified: stable/8/sys/conf/NOTES
==============================================================================
--- stable/8/sys/conf/NOTES	Wed May  7 09:56:14 2014	(r265537)
+++ stable/8/sys/conf/NOTES	Wed May  7 09:56:28 2014	(r265538)
@@ -161,6 +161,7 @@ options 	GEOM_SHSEC		# Shared secret.
 options 	GEOM_STRIPE		# Disk striping.
 options 	GEOM_SUNLABEL		# Sun/Solaris partitioning
 options 	GEOM_UZIP		# Read-only compressed disks
+options 	GEOM_VINUM		# Vinum logical volume manager
 options 	GEOM_VIRSTOR		# Virtual storage.
 options 	GEOM_VOL		# Volume names from UFS superblock
 options 	GEOM_ZERO		# Performance testing helper.

Modified: stable/8/sys/conf/files
==============================================================================
--- stable/8/sys/conf/files	Wed May  7 09:56:14 2014	(r265537)
+++ stable/8/sys/conf/files	Wed May  7 09:56:28 2014	(r265538)
@@ -2127,6 +2127,21 @@ geom/raid3/g_raid3_ctl.c	optional geom_r
 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/vinum/geom_vinum.c		optional geom_vinum
+geom/vinum/geom_vinum_create.c	optional geom_vinum
+geom/vinum/geom_vinum_drive.c	optional geom_vinum
+geom/vinum/geom_vinum_plex.c	optional geom_vinum
+geom/vinum/geom_vinum_volume.c	optional geom_vinum
+geom/vinum/geom_vinum_subr.c	optional geom_vinum
+geom/vinum/geom_vinum_raid5.c	optional geom_vinum
+geom/vinum/geom_vinum_share.c	optional geom_vinum
+geom/vinum/geom_vinum_list.c	optional geom_vinum
+geom/vinum/geom_vinum_rm.c	optional geom_vinum
+geom/vinum/geom_vinum_init.c	optional geom_vinum
+geom/vinum/geom_vinum_state.c	optional geom_vinum
+geom/vinum/geom_vinum_rename.c	optional geom_vinum
+geom/vinum/geom_vinum_move.c	optional geom_vinum
+geom/vinum/geom_vinum_events.c	optional geom_vinum
 geom/virstor/binstream.c	optional geom_virstor
 geom/virstor/g_virstor.c	optional geom_virstor
 geom/virstor/g_virstor_md.c	optional geom_virstor

Modified: stable/8/sys/conf/options
==============================================================================
--- stable/8/sys/conf/options	Wed May  7 09:56:14 2014	(r265537)
+++ stable/8/sys/conf/options	Wed May  7 09:56:28 2014	(r265538)
@@ -110,6 +110,7 @@ GEOM_SHSEC	opt_geom.h
 GEOM_STRIPE	opt_geom.h
 GEOM_SUNLABEL	opt_geom.h
 GEOM_UZIP	opt_geom.h
+GEOM_VINUM	opt_geom.h
 GEOM_VIRSTOR	opt_geom.h
 GEOM_VOL	opt_geom.h
 GEOM_ZERO	opt_geom.h


More information about the svn-src-stable-8 mailing list