svn commit: r230291 - head/share/man/man9

Kevin Lo kevlo at FreeBSD.org
Wed Jan 18 02:27:10 UTC 2012


Author: kevlo
Date: Wed Jan 18 02:27:09 2012
New Revision: 230291
URL: http://svn.freebsd.org/changeset/base/230291

Log:
  vfs_object_create() function is obsolete. Use vnode_create_vobject()
  to create the backing object.
  
  Reviewed by:	kib

Modified:
  head/share/man/man9/vnode.9

Modified: head/share/man/man9/vnode.9
==============================================================================
--- head/share/man/man9/vnode.9	Tue Jan 17 22:42:54 2012	(r230290)
+++ head/share/man/man9/vnode.9	Wed Jan 18 02:27:09 2012	(r230291)
@@ -119,13 +119,13 @@ No type.
 .It Dv VREG
 A regular file; may be with or without VM object backing.
 If you want to make sure this get a backing object, call
-.Xr vfs_object_create 9 .
+.Fn vnode_create_vobject .
 .It Dv VDIR
 A directory.
 .It Dv VBLK
 A block device; may be with or without VM object backing.
 If you want to make sure this get a backing object, call
-.Xr vfs_object_create 9 .
+.Fn vnode_create_vobject .
 .It Dv VCHR
 A character device.
 .It Dv VLNK


More information about the svn-src-all mailing list