From owner-svn-src-all@FreeBSD.ORG Tue Oct 16 10:09:22 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8DC6575; Tue, 16 Oct 2012 10:09:21 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BEA838FC08; Tue, 16 Oct 2012 10:09:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9GA9LFo013391; Tue, 16 Oct 2012 10:09:21 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9GA9L9c013384; Tue, 16 Oct 2012 10:09:21 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201210161009.q9GA9L9c013384@svn.freebsd.org> From: Attilio Rao Date: Tue, 16 Oct 2012 10:09:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r241608 - in head: share/man/man4 sys/boot/forth sys/conf sys/modules X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 10:09:22 -0000 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} \