From owner-cvs-src-old@FreeBSD.ORG Thu Apr 14 21:50:14 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 B945A10656F7 for ; Thu, 14 Apr 2011 21:50:14 +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 E10138FC14 for ; Thu, 14 Apr 2011 21:50:08 +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 p3ELo8Io021054 for ; Thu, 14 Apr 2011 21:50:08 GMT (envelope-from rmacklem@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p3ELo8GB021053 for cvs-src-old@freebsd.org; Thu, 14 Apr 2011 21:50:08 GMT (envelope-from rmacklem@repoman.freebsd.org) Message-Id: <201104142150.p3ELo8GB021053@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rmacklem@repoman.freebsd.org using -f From: Rick Macklem Date: Thu, 14 Apr 2011 21:49:52 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/nfs nfs_commonsubs.c nfs_var.h src/sys/fs/nfsclient nfs_clport.c nfs_clrpcops.c nfs_clstate.c src/sys/fs/nfsserver nfs_nfsdport.c nfs_nfsdserv.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: Thu, 14 Apr 2011 21:50:14 -0000 rmacklem 2011-04-14 21:49:52 UTC FreeBSD src repository Modified files: sys/fs/nfs nfs_commonsubs.c nfs_var.h sys/fs/nfsclient nfs_clport.c nfs_clrpcops.c nfs_clstate.c sys/fs/nfsserver nfs_nfsdport.c nfs_nfsdserv.c Log: SVN rev 220645 on 2011-04-14 21:49:52Z by rmacklem Modify the experimental NFSv4 server so that it handles crossing of server mount points properly. The functions nfsvno_fillattr() and nfsv4_fillattr() were modified to take the extra arguments that are the mount point, a flag to indicate that it is a file system root and the mounted on fileno. The mount point argument needs to be busy when nfsvno_fillattr() is called, since the vp argument is not locked. Reviewed by: kib MFC after: 2 weeks Revision Changes Path 1.10 +18 -18 src/sys/fs/nfs/nfs_commonsubs.c 1.24 +4 -4 src/sys/fs/nfs/nfs_var.h 1.16 +2 -2 src/sys/fs/nfsclient/nfs_clport.c 1.15 +2 -2 src/sys/fs/nfsclient/nfs_clrpcops.c 1.19 +3 -2 src/sys/fs/nfsclient/nfs_clstate.c 1.47 +54 -17 src/sys/fs/nfsserver/nfs_nfsdport.c 1.16 +46 -6 src/sys/fs/nfsserver/nfs_nfsdserv.c