From owner-cvs-src-old@FreeBSD.ORG Tue Jun 28 22:52:47 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 E555E1065751 for ; Tue, 28 Jun 2011 22:52:47 +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 B9BA88FC13 for ; Tue, 28 Jun 2011 22:52:45 +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 p5SMqjec020244 for ; Tue, 28 Jun 2011 22:52:45 GMT (envelope-from rmacklem@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p5SMqj1K020243 for cvs-src-old@freebsd.org; Tue, 28 Jun 2011 22:52:45 GMT (envelope-from rmacklem@repoman.freebsd.org) Message-Id: <201106282252.p5SMqj1K020243@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rmacklem@repoman.freebsd.org using -f From: Rick Macklem Date: Tue, 28 Jun 2011 22:52:38 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/nfs nfsproto.h src/sys/fs/nfsclient nfs_clport.c nfs_clrpcops.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: Tue, 28 Jun 2011 22:52:48 -0000 rmacklem 2011-06-28 22:52:38 UTC FreeBSD src repository Modified files: sys/fs/nfs nfsproto.h sys/fs/nfsclient nfs_clport.c nfs_clrpcops.c Log: SVN rev 223657 on 2011-06-28 22:52:38Z by rmacklem Fix the new NFSv4 client so that it doesn't fill the cached mode attribute in as 0 when doing writes. The change adds the Mode attribute plus the others except Owner and Owner_group to the list requested by the NFSv4 Write Operation. This fixed a problem where an executable file built by "cc" would get mode 0111 instead of 0755 for some NFSv4 servers. Found at the recent NFSv4 interoperability Bakeathon. Tested by: tdh at excfb.com MFC after: 2 weeks Revision Changes Path 1.5 +12 -3 src/sys/fs/nfs/nfsproto.h 1.26 +1 -0 src/sys/fs/nfsclient/nfs_clport.c 1.25 +2 -2 src/sys/fs/nfsclient/nfs_clrpcops.c