diff options
author | phk <phk@FreeBSD.org> | 1995-12-17 21:23:44 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-12-17 21:23:44 +0000 |
commit | 02cbd66c6d015a152ab4b0c15cb19a4d854dc78f (patch) | |
tree | d9e9aadac9903141119e844926290aa59d3064c2 /sys/kern/vfs_export.c | |
parent | b3abae23ca40c1ec028b9355289030d7071a4102 (diff) | |
download | FreeBSD-src-02cbd66c6d015a152ab4b0c15cb19a4d854dc78f.zip FreeBSD-src-02cbd66c6d015a152ab4b0c15cb19a4d854dc78f.tar.gz |
Staticize.
Unstaticize a function in scsi/scsi_base that was used, with an undocumented
option.
My last count on the LINT kernel shows:
Total symbols: 3647
unref symbols: 463
undef symbols: 4
1 ref symbols: 1751
2 ref symbols: 485
Approaching the pain threshold now.
Diffstat (limited to 'sys/kern/vfs_export.c')
-rw-r--r-- | sys/kern/vfs_export.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_export.c b/sys/kern/vfs_export.c index dd7a992..ae38c24 100644 --- a/sys/kern/vfs_export.c +++ b/sys/kern/vfs_export.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.13 (Berkeley) 4/18/94 - * $Id: vfs_subr.c,v 1.47 1995/12/07 12:47:04 davidg Exp $ + * $Id: vfs_subr.c,v 1.48 1995/12/11 04:56:09 dyson Exp $ */ /* @@ -887,7 +887,7 @@ holdrele(vp) * that are found. */ #ifdef DIAGNOSTIC -int busyprt = 0; /* print out busy vnodes */ +static int busyprt = 0; /* print out busy vnodes */ SYSCTL_INT(_debug, 1, busyprt, CTLFLAG_RW, &busyprt, 0, ""); #endif |