From owner-cvs-src-old@FreeBSD.ORG Sat Oct 23 22:28:51 2010 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 B39CA1065674 for ; Sat, 23 Oct 2010 22:28:51 +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 9FE968FC15 for ; Sat, 23 Oct 2010 22:28:51 +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 o9NMSpi1034335 for ; Sat, 23 Oct 2010 22:28:51 GMT (envelope-from rmacklem@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9NMSpEE034334 for cvs-src-old@freebsd.org; Sat, 23 Oct 2010 22:28:51 GMT (envelope-from rmacklem@repoman.freebsd.org) Message-Id: <201010232228.o9NMSpEE034334@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rmacklem@repoman.freebsd.org using -f From: Rick Macklem Date: Sat, 23 Oct 2010 22:28:29 +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/nfsserver nfs_nfsdport.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: Sat, 23 Oct 2010 22:28:51 -0000 rmacklem 2010-10-23 22:28:29 UTC FreeBSD src repository Modified files: sys/fs/nfs nfs_var.h sys/fs/nfsserver nfs_nfsdport.c Log: SVN rev 214255 on 2010-10-23 22:28:29Z by rmacklem Modify the experimental NFSv4 server's file handle hash function to use the generic hash32_buf() function. Although adding the bytes seemed sufficient for UFS and ZFS, since most of the bytes are the same for file handles on the same volume, this might not be sufficient for other file systems. Use of a generic function also seems preferable to one specific to NFSv4. Suggested by: gleb.kurtsou at gmail.com MFC after: 10 days Revision Changes Path 1.17 +1 -1 src/sys/fs/nfs/nfs_var.h 1.27 +4 -6 src/sys/fs/nfsserver/nfs_nfsdport.c