svn commit: r241608 - in head: share/man/man4 sys/boot/forth sys/conf sys/modules

Attilio Rao attilio at FreeBSD.org
Tue Oct 16 10:09:22 UTC 2012


Author: attilio
Date: Tue Oct 16 10:09:21 2012
New Revision: 241608
URL: http://svn.freebsd.org/changeset/base/241608

Log:
  Disconnect non-MPSAFE CODAFS from the build in preparation for dropping
  GIANT from VFS.
  
  This is not targeted for MFC.

Modified:
  head/share/man/man4/Makefile
  head/sys/boot/forth/loader.conf
  head/sys/conf/NOTES
  head/sys/conf/files
  head/sys/conf/options
  head/sys/modules/Makefile

Modified: head/share/man/man4/Makefile
==============================================================================
--- head/share/man/man4/Makefile	Tue Oct 16 10:04:00 2012	(r241607)
+++ head/share/man/man4/Makefile	Tue Oct 16 10:09:21 2012	(r241608)
@@ -93,7 +93,6 @@ MAN=	aac.4 \
 	ciss.4 \
 	cm.4 \
 	cmx.4 \
-	coda.4 \
 	${_coretemp.4} \
 	${_cpuctl.4} \
 	cpufreq.4 \

Modified: head/sys/boot/forth/loader.conf
==============================================================================
--- head/sys/boot/forth/loader.conf	Tue Oct 16 10:04:00 2012	(r241607)
+++ head/sys/boot/forth/loader.conf	Tue Oct 16 10:09:21 2012	(r241608)
@@ -162,7 +162,6 @@ atavia_load="NO"		# VIA Technologies Inc
 # Filesystems
 
 cd9660_load="NO"		# ISO 9660 filesystem
-coda_load="NO"			# CODA filesystem
 fdescfs_load="NO"		# Filedescriptors filesystem
 linprocfs_load="NO"		# Linux compatibility process filesystem
 linsysfs_load="NO"		# Linux compatibility system filesystem

Modified: head/sys/conf/NOTES
==============================================================================
--- head/sys/conf/NOTES	Tue Oct 16 10:04:00 2012	(r241607)
+++ head/sys/conf/NOTES	Tue Oct 16 10:09:21 2012	(r241608)
@@ -1085,13 +1085,6 @@ options 	NFS_GATHERDELAY=10	# Default wr
 options 	NFS_WDELAYHASHSIZ=16	# and with this
 options 	NFS_DEBUG		# Enable NFS Debugging
 
-# Coda stuff:
-options 	CODA			#CODA filesystem.
-device		vcoda			#coda minicache <-> venus comm.
-# Use the old Coda 5.x venus<->kernel interface instead of the new
-# realms-aware 6.x protocol.
-#options 	CODA_COMPAT_5
-
 #
 # Add support for the EXT2FS filesystem of Linux fame.  Be a bit
 # careful with this - the ext2fs code has a tendency to lag behind

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Tue Oct 16 10:04:00 2012	(r241607)
+++ head/sys/conf/files	Tue Oct 16 10:09:21 2012	(r241608)
@@ -2304,12 +2304,6 @@ dev/xe/if_xe.c			optional xe
 dev/xe/if_xe_pccard.c		optional xe pccard
 dev/xl/if_xl.c			optional xl pci
 dev/xl/xlphy.c			optional xl pci
-fs/coda/coda_fbsd.c		optional vcoda
-fs/coda/coda_psdev.c		optional vcoda
-fs/coda/coda_subr.c		optional vcoda
-fs/coda/coda_venus.c		optional vcoda
-fs/coda/coda_vfsops.c		optional vcoda
-fs/coda/coda_vnops.c		optional vcoda
 fs/deadfs/dead_vnops.c		standard
 fs/devfs/devfs_devs.c		standard
 fs/devfs/devfs_dir.c		standard

Modified: head/sys/conf/options
==============================================================================
--- head/sys/conf/options	Tue Oct 16 10:04:00 2012	(r241607)
+++ head/sys/conf/options	Tue Oct 16 10:09:21 2012	(r241608)
@@ -68,7 +68,6 @@ ALQ
 AUDIT		opt_global.h
 CAPABILITIES	opt_capsicum.h
 CAPABILITY_MODE	opt_capsicum.h
-CODA_COMPAT_5	opt_coda.h
 COMPAT_43	opt_compat.h
 COMPAT_43TTY	opt_compat.h
 COMPAT_FREEBSD4	opt_compat.h
@@ -207,7 +206,6 @@ INCLUDE_CONFIG_FILE	opt_config.h
 # dependencies.  Unusability is enforced by hiding the defines for the
 # options in a never-included header.
 CD9660		opt_dontuse.h
-CODA		opt_dontuse.h
 EXT2FS		opt_dontuse.h
 FDESCFS		opt_dontuse.h
 FFS		opt_dontuse.h

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Tue Oct 16 10:04:00 2012	(r241607)
+++ head/sys/modules/Makefile	Tue Oct 16 10:09:21 2012	(r241608)
@@ -67,8 +67,6 @@ SUBDIR=	\
 	${_ciss} \
 	${_cm} \
 	${_cmx} \
-	coda \
-	coda5 \
 	${_coff} \
 	${_coretemp} \
 	${_cp} \


More information about the svn-src-all mailing list