From owner-svn-src-all@freebsd.org Mon Aug 3 16:30:49 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3376B9B291C; Mon, 3 Aug 2015 16:30:49 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 24F64362; Mon, 3 Aug 2015 16:30:49 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t73GUn0O092978; Mon, 3 Aug 2015 16:30:49 GMT (envelope-from trasz@FreeBSD.org) Received: (from trasz@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t73GUmBR092976; Mon, 3 Aug 2015 16:30:48 GMT (envelope-from trasz@FreeBSD.org) Message-Id: <201508031630.t73GUmBR092976@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trasz set sender to trasz@FreeBSD.org using -f From: Edward Tomasz Napierala Date: Mon, 3 Aug 2015 16:30:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r286236 - 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-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Aug 2015 16:30:49 -0000 Author: trasz Date: Mon Aug 3 16:30:47 2015 New Revision: 286236 URL: https://svnweb.freebsd.org/changeset/base/286236 Log: Document vgonel(9). MFC after: 1 month Sponsored by: The FreeBSD Foundation Modified: head/share/man/man9/Makefile head/share/man/man9/vgone.9 Modified: head/share/man/man9/Makefile ============================================================================== --- head/share/man/man9/Makefile Mon Aug 3 16:30:03 2015 (r286235) +++ head/share/man/man9/Makefile Mon Aug 3 16:30:47 2015 (r286236) @@ -1739,6 +1739,7 @@ MLINKS+=vfs_getopt.9 vfs_copyopt.9 \ vfs_getopt.9 vfs_setopt.9 \ vfs_getopt.9 vfs_setopt_part.9 \ vfs_getopt.9 vfs_setopts.9 +MLINKS+=vgone.9 vgonel.9 MLINKS+=vhold.9 vdrop.9 \ vhold.9 vdropl.9 \ vhold.9 vholdl.9 Modified: head/share/man/man9/vgone.9 ============================================================================== --- head/share/man/man9/vgone.9 Mon Aug 3 16:30:03 2015 (r286235) +++ head/share/man/man9/vgone.9 Mon Aug 3 16:30:47 2015 (r286236) @@ -37,6 +37,7 @@ .In sys/vnode.h .Ft void .Fn vgone "struct vnode *vp" +.Fn vgonel "struct vnode *vp" .Sh DESCRIPTION The .Fn vgone @@ -56,6 +57,11 @@ The .Fn vgone function takes an exclusively locked vnode, and returns with the vnode exclusively locked. +The +.Fn vgonel +differs from +.Fn vgone +by requiring the vnode interlock to be held. .Sh SEE ALSO .Xr vnode 9 .Sh AUTHORS