Bug 186537

Summary: [patch] removing obsolete vnode (9) man page references
Product: Documentation Reporter: Miklos Magyari <miklos>
Component: Books & ArticlesAssignee: Warren Block <wblock>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff none

Description Miklos Magyari 2014-02-07 17:00:01 UTC
vfree(9) and vbusy(9) are gone from kern/vfs_subr.c, and been replaced by inline code in vdropl and vholdl. 
So, the reference to these functions should be removed from the vnode manpage.

Related commit: http://svnweb.freebsd.org/base/head/sys/kern/vfs_subr.c?revision=234400&view=markup
Comment 1 Warren Block freebsd_committer freebsd_triage 2014-02-12 16:38:54 UTC
Responsible Changed
From-To: freebsd-doc->wblock

Take.
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-02-12 16:40:03 UTC
Author: wblock (doc committer)
Date: Wed Feb 12 16:39:56 2014
New Revision: 261800
URL: http://svnweb.freebsd.org/changeset/base/261800

Log:
  Remove obsolete vnode(9) man page references.
  
  PR:		docs/186537
  Submitted by:	Miklos Magyari <miklos@magyari.hu>
  MFC after:	3 days

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

Modified: head/share/man/man9/vnode.9
==============================================================================
--- head/share/man/man9/vnode.9	Wed Feb 12 15:57:38 2014	(r261799)
+++ head/share/man/man9/vnode.9	Wed Feb 12 16:39:56 2014	(r261800)
@@ -26,7 +26,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 13, 2010
+.Dd February 12, 2014
 .Dt VNODE 9
 .Os
 .Sh NAME
@@ -69,11 +69,8 @@ and the
 .Va v_holdcnt
 of a vnode reaches zero then the vnode will be put on the freelist
 and may be reused for another file, possibly in another file system.
-The transition to and from the freelist is handled by
-.Xr getnewvnode 9 ,
-.Xr vfree 9
-and
-.Xr vbusy 9 .
+The transition from the freelist is handled by
+.Xr getnewvnode 9 .
 The third is a count of the number of clients which are writing into
 the file.
 It is maintained by the
@@ -82,9 +79,9 @@ and
 .Xr close 2
 system calls.
 .Pp
-Any call which returns a vnode (e.g.\&
+Any call which returns a vnode (e.g.,\&
 .Xr vget 9 ,
-.Xr VOP_LOOKUP 9
+.Xr VOP_LOOKUP 9 ,
 etc.)
 will increase the
 .Va v_usecount
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
Comment 3 Warren Block freebsd_committer freebsd_triage 2014-02-12 16:41:21 UTC
State Changed
From-To: open->closed

Patch committed with minor additions.  Thanks!