svn commit: r286281 - head/sys/kern

Edward Tomasz Napierala trasz at FreeBSD.org
Tue Aug 4 08:51:57 UTC 2015


Author: trasz
Date: Tue Aug  4 08:51:56 2015
New Revision: 286281
URL: https://svnweb.freebsd.org/changeset/base/286281

Log:
  Mark vgonel() as static.  It was already declared static earlier;
  no idea why compilers don't warn about this.
  
  MFC after:	1 month
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/kern/vfs_subr.c

Modified: head/sys/kern/vfs_subr.c
==============================================================================
--- head/sys/kern/vfs_subr.c	Tue Aug  4 08:16:18 2015	(r286280)
+++ head/sys/kern/vfs_subr.c	Tue Aug  4 08:51:56 2015	(r286281)
@@ -2850,7 +2850,7 @@ unlock:
 /*
  * vgone, with the vp interlock held.
  */
-void
+static void
 vgonel(struct vnode *vp)
 {
 	struct thread *td;


More information about the svn-src-all mailing list