From dcff54aa4663338a31ac278fa49eb5576771f7e3 Mon Sep 17 00:00:00 2001 From: kib Date: Wed, 30 Jul 2014 04:00:23 +0000 Subject: [PATCH] MFC r269159: Correct the locking statement. MFC r269161: Explicitely mention that inactivated or reclaimed vnode is locked exclusively. git-svn-id: svn://svn.freebsd.org/base/stable/10@269285 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- share/man/man9/VOP_INACTIVE.9 | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/share/man/man9/VOP_INACTIVE.9 b/share/man/man9/VOP_INACTIVE.9 index 2f1e4ed60..6c71d0365 100644 --- a/share/man/man9/VOP_INACTIVE.9 +++ b/share/man/man9/VOP_INACTIVE.9 @@ -28,7 +28,7 @@ .\" .\" $FreeBSD$ .\" -.Dd July 24, 1996 +.Dd July 27, 2014 .Dt VOP_INACTIVE 9 .Os .Sh NAME @@ -63,17 +63,14 @@ is called when a vnode is being reused for a different file system. Any file system specific resources associated with the vnode should be freed. .Sh LOCKS -For VOP_INACTIVE, the -.Fa vp -will be locked on entry. -Your VOP_INACTIVE code -must unlock the -.Fa vp -prior to returning. -.Pp -For VOP_RECLAIM, the +For both +.Fn VOP_INACTIVE +and +.Fn VOP_RECLAIM , +the .Fa vp -will not be locked on entry and should be left unlocked on return. +will be exclusively locked on entry, and must be left exclusively +locked on return. .Sh SEE ALSO .Xr vnode 9 .Sh AUTHORS -- 2.45.0