summaryrefslogtreecommitdiff
path: root/share/man
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2020-11-14 10:35:59 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2020-11-14 10:35:59 +0000
commit9f0fc9fc8f04330d9dd4db6e7e8451ad18f885a9 (patch)
treeead74142f7be2bbedfd68f5ecfc1e3479e1c9acb /share/man
parent776bc1ebd2a451bf591dc8571888384a46428e76 (diff)
remove macro instances from arbitrary string width specifiers. for example
-width ".Dv BOB" -> -width "BOB" although they are not errors, they are misleading and probably should not get pasted around
Diffstat (limited to 'share/man')
-rw-r--r--share/man/man4/bnx.48
-rw-r--r--share/man/man9/getdevvp.98
-rw-r--r--share/man/man9/getnewvnode.96
-rw-r--r--share/man/man9/vclean.98
-rw-r--r--share/man/man9/vdevgone.98
-rw-r--r--share/man/man9/vflush.98
-rw-r--r--share/man/man9/vinvalbuf.96
7 files changed, 26 insertions, 26 deletions
diff --git a/share/man/man4/bnx.4 b/share/man/man4/bnx.4
index d6fd1a13d35..88d86d3a9a6 100644
--- a/share/man/man4/bnx.4
+++ b/share/man/man4/bnx.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: bnx.4,v 1.30 2014/09/14 00:17:09 brad Exp $
+.\" $OpenBSD: bnx.4,v 1.31 2020/11/14 10:35:58 jmc Exp $
.\"
.\"Copyright (c) 2006 Broadcom Corporation
.\" David Christensen <davidch@broadcom.com>. All rights reserved.
@@ -30,7 +30,7 @@
.\"
.\" $FreeBSD: /repoman/r/ncvs/src/share/man/man4/bce.4,v 1.2 2006/04/10 20:12:17 brueffer Exp $
.\"
-.Dd $Mdocdate: September 14 2014 $
+.Dd $Mdocdate: November 14 2020 $
.Dt BNX 4
.Os
.Sh NAME
@@ -89,7 +89,7 @@ interrupt coalescing
The
.Nm
driver supports the following media types:
-.Bl -tag -width ".Cm 10baseT/UTP"
+.Bl -tag -width "10baseT/UTP"
.It Cm autoselect
Enable autoselection of the media type and options.
The user can manually override
@@ -135,7 +135,7 @@ mode is supported.
The
.Nm
driver supports the following media options:
-.Bl -tag -width ".Cm full-duplex"
+.Bl -tag -width "full-duplex"
.It Cm full-duplex
Force full duplex operation.
.It Cm half-duplex
diff --git a/share/man/man9/getdevvp.9 b/share/man/man9/getdevvp.9
index e38b3b514fd..1fc976e3717 100644
--- a/share/man/man9/getdevvp.9
+++ b/share/man/man9/getdevvp.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: getdevvp.9,v 1.8 2013/06/04 19:27:06 schwarze Exp $
+.\" $OpenBSD: getdevvp.9,v 1.9 2020/11/14 10:35:58 jmc Exp $
.\"
.\" Copyright (C) 2002 Peter A. Werner. All rights reserved.
.\"
@@ -26,7 +26,7 @@
.\" DAMAGE.
.\"
.\"
-.Dd $Mdocdate: June 4 2013 $
+.Dd $Mdocdate: November 14 2020 $
.Dt GETDEVVP 9
.Os
.Sh NAME
@@ -54,14 +54,14 @@ and returns a pointer to it in
.Fa vpp .
.Pp
Its arguments are:
-.Bl -tag -width ".Fa rootrefs"
+.Bl -tag -width "rootrefs"
.It Fa dev
The device number of the desired device.
.It Fa vpp
Where the vnode will be returned on success.
.It Fa type
The type of device, either:
-.Bl -tag -width ".Dv VBLK"
+.Bl -tag -width "VBLK"
.It Dv VBLK
For a block device, or
.It Dv VCHR
diff --git a/share/man/man9/getnewvnode.9 b/share/man/man9/getnewvnode.9
index 1b2949089f6..e531070c9a8 100644
--- a/share/man/man9/getnewvnode.9
+++ b/share/man/man9/getnewvnode.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: getnewvnode.9,v 1.10 2020/01/20 23:23:04 claudio Exp $
+.\" $OpenBSD: getnewvnode.9,v 1.11 2020/11/14 10:35:58 jmc Exp $
.\"
.\" Copyright (C) 2001 Chad David <davidc@acns.ab.ca>. All rights reserved.
.\"
@@ -27,7 +27,7 @@
.\"
.\" $FreeBSD: src/share/man/man9/getnewvnode.9,v 1.1 2001/12/02 02:13:35 alfred Exp $
.\"
-.Dd $Mdocdate: January 20 2020 $
+.Dd $Mdocdate: November 14 2020 $
.Dt GETNEWVNODE 9
.Os
.Sh NAME
@@ -63,7 +63,7 @@ freshly allocated.
The arguments to
.Fn getnewvnode
are:
-.Bl -tag -width ".Fa vops"
+.Bl -tag -width "vops"
.It Fa tag
The file system type.
.It Fa mp
diff --git a/share/man/man9/vclean.9 b/share/man/man9/vclean.9
index 74e95865a30..324471a3dad 100644
--- a/share/man/man9/vclean.9
+++ b/share/man/man9/vclean.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: vclean.9,v 1.10 2013/06/04 19:27:15 schwarze Exp $
+.\" $OpenBSD: vclean.9,v 1.11 2020/11/14 10:35:58 jmc Exp $
.\"-
.\" Copyright (c) 2002 Peter Werner
.\" All rights reserved.
@@ -25,7 +25,7 @@
.\" SUCH DAMAGE.
.\"
.\"
-.Dd $Mdocdate: June 4 2013 $
+.Dd $Mdocdate: November 14 2020 $
.Dt VCLEAN 9
.Os
.Sh NAME
@@ -48,12 +48,12 @@ function clears any VM and buffer data associated with the vnode
and reclaims it from the underlying file system.
.Pp
Its arguments are:
-.Bl -tag -width ".Fa flags"
+.Bl -tag -width "flags"
.It Fa vp
The vnode to be cleaned.
.It Fa flags
The flags indicating how the vnode should be handled.
-.Bl -tag -width ".Dv DOCLOSE"
+.Bl -tag -width "DOCLOSE"
.It Dv DOCLOSE
If this flag is set,
.Fn vclean
diff --git a/share/man/man9/vdevgone.9 b/share/man/man9/vdevgone.9
index 1482159bf99..22a38f73801 100644
--- a/share/man/man9/vdevgone.9
+++ b/share/man/man9/vdevgone.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: vdevgone.9,v 1.7 2013/06/04 19:27:15 schwarze Exp $
+.\" $OpenBSD: vdevgone.9,v 1.8 2020/11/14 10:35:58 jmc Exp $
.\"-
.\" Copyright (c) 2002 Peter Werner
.\" All rights reserved.
@@ -25,7 +25,7 @@
.\" SUCH DAMAGE.
.\"
.\"
-.Dd $Mdocdate: June 4 2013 $
+.Dd $Mdocdate: November 14 2020 $
.Dt VDEVGONE 9
.Os
.Sh NAME
@@ -51,7 +51,7 @@ and of type
.Fa type .
.Pp
Its arguments are:
-.Bl -tag -width ".Fa type"
+.Bl -tag -width "type"
.It Fa maj
The major number of the device.
.It Fa minl
@@ -60,7 +60,7 @@ The lowest minor number for the device to be revoked.
The highest minor number for the device to be revoked.
.It Fa type
The type of the device; this must be one of:
-.Bl -tag -width ".Dv VBLK"
+.Bl -tag -width "VBLK"
.It Dv VBLK
Device is a block device
.It Dv VCHR
diff --git a/share/man/man9/vflush.9 b/share/man/man9/vflush.9
index 44f4599a062..cba834018cf 100644
--- a/share/man/man9/vflush.9
+++ b/share/man/man9/vflush.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: vflush.9,v 1.6 2013/07/17 20:21:55 schwarze Exp $
+.\" $OpenBSD: vflush.9,v 1.7 2020/11/14 10:35:58 jmc Exp $
.\"
.\" Copyright (C) 2001 Chad David <davidc@acns.ab.ca>. All rights reserved.
.\"
@@ -27,7 +27,7 @@
.\"
.\" $FreeBSD: src/share/man/man9/vflush.9,v 1.2 2001/12/14 09:11:13 ru Exp $
.\"
-.Dd $Mdocdate: July 17 2013 $
+.Dd $Mdocdate: November 14 2020 $
.Dt VFLUSH 9
.Os
.Sh NAME
@@ -45,14 +45,14 @@ function removes any vnodes in the vnode table that belong to the given
mount structure.
.Pp
Its arguments are:
-.Bl -tag -width ".Fa rootrefs"
+.Bl -tag -width "rootrefs"
.It Fa mp
The mount point whose vnodes should be removed.
.It Fa skipvp
If this is given, the vnode it represents will be skipped.
.It Fa flags
The flags indicating how vnodes should be handled.
-.Bl -tag -width ".Dv WRITECLOSE"
+.Bl -tag -width "WRITECLOSE"
.It Dv FORCECLOSE
If set, busy vnodes will be forcibly closed.
.It Dv SKIPSYSTEM
diff --git a/share/man/man9/vinvalbuf.9 b/share/man/man9/vinvalbuf.9
index 419656124a4..f955cbb08cb 100644
--- a/share/man/man9/vinvalbuf.9
+++ b/share/man/man9/vinvalbuf.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: vinvalbuf.9,v 1.12 2019/07/25 01:43:20 cheloha Exp $
+.\" $OpenBSD: vinvalbuf.9,v 1.13 2020/11/14 10:35:58 jmc Exp $
.\"
.\" Copyright (C) 2001 Chad David <davidc@acns.ab.ca>. All rights reserved.
.\"
@@ -27,7 +27,7 @@
.\"
.\" $FreeBSD: src/share/man/man9/vinvalbuf.9,v 1.6 2001/10/06 11:19:41 sheldonh Exp $
.\"
-.Dd $Mdocdate: July 25 2019 $
+.Dd $Mdocdate: November 14 2020 $
.Dt VINVALBUF 9
.Os
.Sh NAME
@@ -53,7 +53,7 @@ If the
flag is set, indirect blocks will not be flushed.
.Pp
Its arguments are:
-.Bl -tag -width ".Fa slptimeo"
+.Bl -tag -width "slptimeo"
.It Fa vp
A pointer to the vnode whose buffers will be invalidated.
.It Fa flags