From owner-svn-src-head@FreeBSD.ORG Fri May 22 14:53:26 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA2051065741; Fri, 22 May 2009 14:53:26 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D94E88FC13; Fri, 22 May 2009 14:53:26 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4MErQX3009620; Fri, 22 May 2009 14:53:26 GMT (envelope-from rmacklem@svn.freebsd.org) Received: (from rmacklem@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4MErQuC009619; Fri, 22 May 2009 14:53:26 GMT (envelope-from rmacklem@svn.freebsd.org) Message-Id: <200905221453.n4MErQuC009619@svn.freebsd.org> From: Rick Macklem Date: Fri, 22 May 2009 14:53:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r192581 - head/sys/fs/nfs X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 May 2009 14:53:27 -0000 Author: rmacklem Date: Fri May 22 14:53:26 2009 New Revision: 192581 URL: http://svn.freebsd.org/changeset/base/192581 Log: Fix the comment in sys/fs/nfs/nfs.h to correctly reflect the current use of the R_xxx flags. This changed when the NFS_LEGACYRPC code was removed from the subsystem. Approved by: kib (mentor) Modified: head/sys/fs/nfs/nfs.h Modified: head/sys/fs/nfs/nfs.h ============================================================================== --- head/sys/fs/nfs/nfs.h Fri May 22 13:57:44 2009 (r192580) +++ head/sys/fs/nfs/nfs.h Fri May 22 14:53:26 2009 (r192581) @@ -477,7 +477,7 @@ struct nfssockreq { */ TAILQ_HEAD(nfsreqhead, nfsreq); -/* First 8 R_xxx flags defined in rpc/rpcclnt.h, the rest are here */ +/* This is the only nfsreq R_xxx flag still used. */ #define R_DONTRECOVER 0x00000100 /* don't initiate recovery when this rpc gets a stale state reply */