From owner-cvs-src-old@FreeBSD.ORG Wed Apr 27 17:53:38 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C51B106566B for ; Wed, 27 Apr 2011 17:53:38 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0FD7B8FC08 for ; Wed, 27 Apr 2011 17:53:38 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p3RHrbH9085372 for ; Wed, 27 Apr 2011 17:53:37 GMT (envelope-from rmacklem@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p3RHrbsp085371 for cvs-src-old@freebsd.org; Wed, 27 Apr 2011 17:53:37 GMT (envelope-from rmacklem@repoman.freebsd.org) Message-Id: <201104271753.p3RHrbsp085371@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rmacklem@repoman.freebsd.org using -f From: Rick Macklem Date: Wed, 27 Apr 2011 17:51:51 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING src/sbin/mount mount.c src/sbin/mount_nfs Makefile mount_nfs.c src/sys/amd64/conf GENERIC src/sys/fs/nfsclient nfs_clvfsops.c src/sys/i386/conf GENERIC src/sys/ia64/conf GENERIC src/sys/nfsclient nfs_vfsops.c ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Apr 2011 17:53:38 -0000 rmacklem 2011-04-27 17:51:51 UTC FreeBSD src repository Modified files: . UPDATING sbin/mount mount.c sbin/mount_nfs Makefile mount_nfs.c sys/amd64/conf GENERIC sys/fs/nfsclient nfs_clvfsops.c sys/i386/conf GENERIC sys/ia64/conf GENERIC sys/nfsclient nfs_vfsops.c sys/pc98/conf GENERIC sys/powerpc/conf GENERIC GENERIC64 sys/sparc64/conf GENERIC sys/sun4v/conf GENERIC Log: SVN rev 221124 on 2011-04-27 17:51:51Z by rmacklem This patch changes head so that the default NFS client is now the new NFS client (which I guess is no longer experimental). The fstype "newnfs" is now "nfs" and the regular/old NFS client is now fstype "oldnfs". Although mounts via fstype "nfs" will usually work without userland changes, an updated mount_nfs(8) binary is needed for kernels built with "options NFSCL" but not "options NFSCLIENT". Updated mount_nfs(8) and mount(8) binaries are needed to do mounts for fstype "oldnfs". The GENERIC kernel configs have been changed to use options NFSCL and NFSD (the new client and server) instead of NFSCLIENT and NFSSERVER. For kernels being used on diskless NFS root systems, "options NFSCL" must be in the kernel config. Discussed on freebsd-fs@. Revision Changes Path 1.690 +18 -0 src/UPDATING 1.112 +2 -2 src/sbin/mount/mount.c 1.19 +1 -1 src/sbin/mount_nfs/Makefile 1.96 +4 -8 src/sbin/mount_nfs/mount_nfs.c 1.558 +2 -2 src/sys/amd64/conf/GENERIC 1.25 +1 -1 src/sys/fs/nfsclient/nfs_clvfsops.c 1.543 +2 -2 src/sys/i386/conf/GENERIC 1.120 +2 -2 src/sys/ia64/conf/GENERIC 1.244 +1 -1 src/sys/nfsclient/nfs_vfsops.c 1.339 +2 -2 src/sys/pc98/conf/GENERIC 1.112 +2 -2 src/sys/powerpc/conf/GENERIC 1.10 +2 -2 src/sys/powerpc/conf/GENERIC64 1.176 +2 -2 src/sys/sparc64/conf/GENERIC 1.42 +2 -2 src/sys/sun4v/conf/GENERIC