From owner-freebsd-hackers@FreeBSD.ORG Wed Oct 27 06:36:08 2010 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF529106566B for ; Wed, 27 Oct 2010 06:36:08 +0000 (UTC) (envelope-from lars@chaotika.org) Received: from diogenes.chaotika.org (cl-2124.ham-01.de.sixxs.net [IPv6:2001:6f8:900:84b::2]) by mx1.freebsd.org (Postfix) with ESMTP id 5CA858FC16 for ; Wed, 27 Oct 2010 06:36:08 +0000 (UTC) Received: from [192.168.0.109] (intern.tbh.eu [213.146.244.186]) by diogenes.chaotika.org (Postfix) with ESMTPSA id 9E1E532276C for ; Wed, 27 Oct 2010 08:36:07 +0200 (CEST) From: Lars Hartmann To: freebsd-hackers@freebsd.org In-Reply-To: <1288160610.4280.18.camel@apollon> References: <1288160610.4280.18.camel@apollon> Content-Type: multipart/mixed; boundary="=-Q0aIyj34DgKHBcvqwOoZ" Date: Wed, 27 Oct 2010 08:36:07 +0200 Message-ID: <1288161367.4280.21.camel@apollon> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 Subject: Re: [PATCH] Fix 'implicit declaration' warning and update vgone(9) X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 06:36:08 -0000 --=-Q0aIyj34DgKHBcvqwOoZ Content-Type: text/plain Content-Transfer-Encoding: 7bit attached the fixed vgonel.patch -- Lars Hartmann --=-Q0aIyj34DgKHBcvqwOoZ Content-Disposition: attachment; filename="vgonel.patch" Content-Type: text/x-patch; name="vgonel.patch"; charset="UTF-8" Content-Transfer-Encoding: 7bit fix implicit declaration warning - found by Ben Kaduk From: Lars Hartmann --- sys/sys/vnode.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index e82f8ea..8ec8d1f 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -626,6 +626,7 @@ void vdestroy(struct vnode *); int vflush(struct mount *mp, int rootrefs, int flags, struct thread *td); int vget(struct vnode *vp, int lockflag, struct thread *td); void vgone(struct vnode *vp); +void vgonel(struct vnode *vp); void vhold(struct vnode *); void vholdl(struct vnode *); int vinvalbuf(struct vnode *vp, int save, int slpflag, int slptimeo); --=-Q0aIyj34DgKHBcvqwOoZ--