From owner-cvs-src-old@FreeBSD.ORG Sun Jul 3 21:44:43 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 9A6D31065670 for ; Sun, 3 Jul 2011 21:44:43 +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 887558FC16 for ; Sun, 3 Jul 2011 21:44:43 +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 p63LihdQ098580 for ; Sun, 3 Jul 2011 21:44:43 GMT (envelope-from rmacklem@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p63LihZZ098579 for cvs-src-old@freebsd.org; Sun, 3 Jul 2011 21:44:43 GMT (envelope-from rmacklem@repoman.freebsd.org) Message-Id: <201107032144.p63LihZZ098579@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rmacklem@repoman.freebsd.org using -f From: Rick Macklem Date: Sun, 3 Jul 2011 21:44:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/nfs nfs_var.h src/sys/fs/nfsclient nfs_clrpcops.c nfs_clstate.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: Sun, 03 Jul 2011 21:44:43 -0000 rmacklem 2011-07-03 21:44:26 UTC FreeBSD src repository Modified files: sys/fs/nfs nfs_var.h sys/fs/nfsclient nfs_clrpcops.c nfs_clstate.c Log: SVN rev 223747 on 2011-07-03 21:44:26Z by rmacklem Modify the new NFSv4 client so that it appends a file handle to the lock_owner4 string that goes on the wire. Also, add code to do a ReleaseLockOwner Op on the lock_owner4 string before a Close. Apparently not all NFSv4 servers handle multiple instances of the same lock_owner4 string, at least not in a compatible way. This patch avoids having multiple instances, except for one unusual case, which will be fixed by a future commit. Found at the recent NFSv4 interoperability Bakeathon. Tested by: tdh at excfb.com MFC after: 2 weeks Revision Changes Path 1.31 +1 -0 src/sys/fs/nfs/nfs_var.h 1.26 +27 -19 src/sys/fs/nfsclient/nfs_clrpcops.c 1.25 +1 -2 src/sys/fs/nfsclient/nfs_clstate.c