diff options
| author | hannken <hannken@NetBSD.org> | 2014-03-24 13:42:40 +0000 |
|---|---|---|
| committer | hannken <hannken@NetBSD.org> | 2014-03-24 13:42:40 +0000 |
| commit | cb7d003f64e463712210ccbf76553552e9dfea6d (patch) | |
| tree | 5ff035a35aeefa7d7e8c76bc42d2d4ee7ecbec8f /usr.sbin/pstat | |
| parent | 60c424ee6ea573740eb7a80eb601dfb563e5df62 (diff) | |
- Make VI_XLOCK, VI_CLEAN and VI_LOCKSHARE private to kern/vfs_*.c.
- Make vwait() static.
- Add vdead_check() to check a vnode for being or becoming dead.
Discussed on tech-kern.
Welcome to 6.99.38
Diffstat (limited to 'usr.sbin/pstat')
| -rw-r--r-- | usr.sbin/pstat/pstat.8 | 12 | ||||
| -rw-r--r-- | usr.sbin/pstat/pstat.c | 5 |
2 files changed, 4 insertions, 13 deletions
diff --git a/usr.sbin/pstat/pstat.8 b/usr.sbin/pstat/pstat.8 index b082cc5c4ef..e451235784f 100644 --- a/usr.sbin/pstat/pstat.8 +++ b/usr.sbin/pstat/pstat.8 @@ -1,4 +1,4 @@ -.\" $NetBSD: pstat.8,v 1.39 2009/12/05 20:11:18 pooka Exp $ +.\" $NetBSD: pstat.8,v 1.40 2014/03/24 13:42:41 hannken Exp $ .\" .\" Copyright (c) 1980, 1991, 1993, 1994 .\" The Regents of the University of California. All rights reserved. @@ -29,7 +29,7 @@ .\" .\" from: @(#)pstat.8 8.5 (Berkeley) 5/13/94 .\" -.Dd December 5, 2009 +.Dd March 24, 2014 .Dt PSTAT 8 .Os .Sh NAME @@ -270,14 +270,6 @@ VSYSTEM vnode being used by kernel. VISTTY vnode is a tty. .It E VEXECMAP vnode has PROT_EXEC mappings. -.It L -VXLOCK locked to change underlying type. -.It W -VXWANT process is waiting for vnode. -.It B -VBWAIT waiting for output to complete. -.It A -VALIASED vnode has an alias. .It D VDIROP lfs vnode involved in directory op. .It Y diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index d79ed6727d0..d9e26b37eb6 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -1,4 +1,4 @@ -/* $NetBSD: pstat.c,v 1.122 2013/11/24 13:13:12 mlelstv Exp $ */ +/* $NetBSD: pstat.c,v 1.123 2014/03/24 13:42:41 hannken Exp $ */ /*- * Copyright (c) 1980, 1991, 1993, 1994 @@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1991, 1993, 1994\ #if 0 static char sccsid[] = "@(#)pstat.c 8.16 (Berkeley) 5/9/95"; #else -__RCSID("$NetBSD: pstat.c,v 1.122 2013/11/24 13:13:12 mlelstv Exp $"); +__RCSID("$NetBSD: pstat.c,v 1.123 2014/03/24 13:42:41 hannken Exp $"); #endif #endif /* not lint */ @@ -384,7 +384,6 @@ const struct flagbit_desc vnode_flags[] = { { VV_SYSTEM, 'S' }, { VV_ISTTY, 'I' }, { VI_EXECMAP, 'E' }, - { VI_XLOCK, 'L' }, { VU_DIROP, 'D' }, { VI_LAYER, 'Y' }, { VI_ONWORKLST, 'O' }, |
