summaryrefslogtreecommitdiff
path: root/usr.sbin/pstat/pstat.c
diff options
context:
space:
mode:
authorSebastien Marie <semarie@cvs.openbsd.org>2021-10-19 14:50:06 +0000
committerSebastien Marie <semarie@cvs.openbsd.org>2021-10-19 14:50:06 +0000
commit27b24ee98ed42b29bf18f59412e38928a097472c (patch)
tree07787525bcebc56749c91da103200368ade76c20 /usr.sbin/pstat/pstat.c
parenta5225021bca184729ef669e250fa83d951803384 (diff)
vnode: remove VLOCKSWORK usage in pstat and mention in man pages
unbreak the tree. found hard way by tb@ ok tb@ which have the same diff
Diffstat (limited to 'usr.sbin/pstat/pstat.c')
-rw-r--r--usr.sbin/pstat/pstat.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c
index 3918afba16d..af732d407a5 100644
--- a/usr.sbin/pstat/pstat.c
+++ b/usr.sbin/pstat/pstat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pstat.c,v 1.124 2021/07/12 15:09:21 beck Exp $ */
+/* $OpenBSD: pstat.c,v 1.125 2021/10/19 14:50:05 semarie Exp $ */
/* $NetBSD: pstat.c,v 1.27 1996/10/23 22:50:06 cgd Exp $ */
/*-
@@ -499,8 +499,6 @@ vnode_print(struct vnode *avnode, struct vnode *vp)
*fp++ = 'A';
if (vp->v_bioflag & VBIOONFREELIST)
*fp++ = 'F';
- if (flag & VLOCKSWORK)
- *fp++ = 'l';
if (vp->v_bioflag & VBIOONSYNCLIST)
*fp++ = 's';
if (fp == flags)