From owner-svn-src-head@FreeBSD.ORG Mon Jan 28 07:04:52 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id DBDCD268; Mon, 28 Jan 2013 07:04:52 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id CD0A8D66; Mon, 28 Jan 2013 07:04:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r0S74qoe065977; Mon, 28 Jan 2013 07:04:52 GMT (envelope-from pluknet@svn.freebsd.org) Received: (from pluknet@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r0S74qBh065976; Mon, 28 Jan 2013 07:04:52 GMT (envelope-from pluknet@svn.freebsd.org) Message-Id: <201301280704.r0S74qBh065976@svn.freebsd.org> From: Sergey Kandaurov Date: Mon, 28 Jan 2013 07:04:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r246020 - head/share/man/man9 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 28 Jan 2013 07:04:52 -0000 Author: pluknet Date: Mon Jan 28 07:04:52 2013 New Revision: 246020 URL: http://svnweb.freebsd.org/changeset/base/246020 Log: Technical corrections and improvements for the previous change. Submitted by: bde Modified: head/share/man/man9/VFS_SET.9 Modified: head/share/man/man9/VFS_SET.9 ============================================================================== --- head/share/man/man9/VFS_SET.9 Mon Jan 28 00:31:55 2013 (r246019) +++ head/share/man/man9/VFS_SET.9 Mon Jan 28 07:04:52 2013 (r246020) @@ -26,7 +26,7 @@ .\" .\" $FreeBSD$ .\" -.Dd January 25, 2012 +.Dd January 28, 2013 .Dt VFS_SET 9 .Os .Sh NAME @@ -84,9 +84,9 @@ sysctl is set to .Sh PSEUDOCODE .Bd -literal /* - * Fill in the ones we redefine. The unused fields will be - * automatically initialized by pointers to vfs_std* functions - * during file system registration. + * Fill in the fields for which we have special methods. + * The others are initially null. This tells vfs to change them to + * pointers to vfs_std* functions during file system registration. */ static struct vfsops myfs_vfsops = { .vfs_mount = myfs_mount,