Remove static qualifier from vgonel, as it is needed by the Arla folk

outside of vfs_subr.c.

Submitted by:	Assar Westerlund <assar@sics.se>
Reviewed by:	rwatson
Approved by:	jkh
This commit is contained in:
Robert Watson 2000-02-02 07:07:17 +00:00
parent 16de1a07c2
commit b7a5f3ca1b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56949
3 changed files with 3 additions and 4 deletions

View File

@ -82,7 +82,6 @@ static MALLOC_DEFINE(M_NETADDR, "Export Host", "Export host address structure");
static void insmntque __P((struct vnode *vp, struct mount *mp));
static void vclean __P((struct vnode *vp, int flags, struct proc *p));
static void vfree __P((struct vnode *));
static void vgonel __P((struct vnode *vp, struct proc *p));
static unsigned long numvnodes;
SYSCTL_INT(_debug, OID_AUTO, numvnodes, CTLFLAG_RD, &numvnodes, 0, "");
@ -1820,7 +1819,7 @@ vgone(vp)
/*
* vgone, with the vp interlock held.
*/
static void
void
vgonel(vp, p)
struct vnode *vp;
struct proc *p;

View File

@ -82,7 +82,6 @@ static MALLOC_DEFINE(M_NETADDR, "Export Host", "Export host address structure");
static void insmntque __P((struct vnode *vp, struct mount *mp));
static void vclean __P((struct vnode *vp, int flags, struct proc *p));
static void vfree __P((struct vnode *));
static void vgonel __P((struct vnode *vp, struct proc *p));
static unsigned long numvnodes;
SYSCTL_INT(_debug, OID_AUTO, numvnodes, CTLFLAG_RD, &numvnodes, 0, "");
@ -1820,7 +1819,7 @@ vgone(vp)
/*
* vgone, with the vp interlock held.
*/
static void
void
vgonel(vp, p)
struct vnode *vp;
struct proc *p;

View File

@ -558,6 +558,7 @@ void vfs_rm_vnodeops __P((const void *));
int vflush __P((struct mount *mp, struct vnode *skipvp, int flags));
int vget __P((struct vnode *vp, int lockflag, struct proc *p));
void vgone __P((struct vnode *vp));
void vgonel __P((struct vnode *vp, struct proc *p));
void vhold __P((struct vnode *));
int vinvalbuf __P((struct vnode *vp, int save, struct ucred *cred,