-.\" $OpenBSD: vnode.9,v 1.33 2020/01/20 23:23:04 claudio Exp $
+.\" $OpenBSD: vnode.9,v 1.34 2021/10/19 14:50:05 semarie Exp $
.\"
.\" Copyright (c) 2001 Constantine Sapuntzakis
.\" All rights reserved.
.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
.\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: January 20 2020 $
+.Dd $Mdocdate: October 19 2021 $
.Dt VNODE 9
.Os
.Sh NAME
A process is waiting for this vnode.
.It Dv VALIASED
This vnode has an alias.
-.It Dv VLOCKSWORK
-This vnode's underlying file system supports locking discipline.
.El
.Pp
The
-.\" $OpenBSD: pstat.8,v 1.58 2020/04/23 21:28:10 jmc Exp $
+.\" $OpenBSD: pstat.8,v 1.59 2021/10/19 14:50:05 semarie Exp $
.\" $NetBSD: pstat.8,v 1.9.4.1 1996/06/02 09:08:17 mrg Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993, 1994
.\"
.\" from: @(#)pstat.8 8.4 (Berkeley) 4/19/94
.\"
-.Dd $Mdocdate: April 23 2020 $
+.Dd $Mdocdate: October 19 2021 $
.Dt PSTAT 8
.Os
.Sh NAME
VALIASED vnode has an alias.
.It F
VONFREELIST vnode is on a free list.
-.It l
-VLOCKSWORK FS supports locking discipline.
.It s
VONSYNCLIST vnode is on syncer worklist.
.El
-/* $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 $ */
/*-
*fp++ = 'A';
if (vp->v_bioflag & VBIOONFREELIST)
*fp++ = 'F';
- if (flag & VLOCKSWORK)
- *fp++ = 'l';
if (vp->v_bioflag & VBIOONSYNCLIST)
*fp++ = 's';
if (fp == flags)