summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2017-09-12 15:06:20 +0000
committerschwarze <schwarze@openbsd.org>2017-09-12 15:06:20 +0000
commit200662e0982aeb19c83e3719de555768407fb57b (patch)
tree6f0cdfeeedc7b2713823088ad1ce6324852db8c4
parentuse the standard .Fa idiom for ioctl(2) args, and kill .Tn (diff)
downloadwireguard-openbsd-200662e0982aeb19c83e3719de555768407fb57b.tar.xz
wireguard-openbsd-200662e0982aeb19c83e3719de555768407fb57b.zip
use .Dv for ioctl(2) request names;
from <ScottCheloha at gmail dot com>
-rw-r--r--share/man/man4/vscsi.416
1 files changed, 8 insertions, 8 deletions
diff --git a/share/man/man4/vscsi.4 b/share/man/man4/vscsi.4
index 2882cd822e4..e3b2b54de4a 100644
--- a/share/man/man4/vscsi.4
+++ b/share/man/man4/vscsi.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: vscsi.4,v 1.13 2014/06/28 06:42:42 matthew Exp $
+.\" $OpenBSD: vscsi.4,v 1.14 2017/09/12 15:06:20 schwarze Exp $
.\"
.\" Copyright (c) 2008 David Gwynne <dlg@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: June 28 2014 $
+.Dd $Mdocdate: September 12 2017 $
.Dt VSCSI 4
.Os
.Sh NAME
@@ -41,7 +41,7 @@ commands are provided to allow userland to dequeue SCSI commands and reply to
them:
.Pp
.Bl -tag -width Ds -compact
-.It VSCSI_I2T Fa "struct vscsi_ioc_i2t *"
+.It Dv VSCSI_I2T Fa "struct vscsi_ioc_i2t *"
Dequeue a SCSI command.
If no SCSI commands are available to dequeue,
.Xr ioctl 2
@@ -71,8 +71,8 @@ struct vscsi_ioc_i2t {
};
.Ed
.Pp
-.It VSCSI_DATA_READ Fa "struct vscsi_ioc_data *"
-.It VSCSI_DATA_WRITE Fa "struct vscsi_ioc_data *"
+.It Dv VSCSI_DATA_READ Fa "struct vscsi_ioc_data *"
+.It Dv VSCSI_DATA_WRITE Fa "struct vscsi_ioc_data *"
Read or write data in response to a SCSI command identified by tag.
.Bd -literal -offset indent
struct vscsi_ioc_data {
@@ -83,7 +83,7 @@ struct vscsi_ioc_data {
};
.Ed
.Pp
-.It VSCSI_T2I Fa "struct vscsi_ioc_t2i *"
+.It Dv VSCSI_T2I Fa "struct vscsi_ioc_t2i *"
Signal completion of a SCSI command identified by tag.
.Bd -literal -offset indent
struct vscsi_ioc_t2i {
@@ -98,8 +98,8 @@ struct vscsi_ioc_t2i {
};
.Ed
.Pp
-.It VSCSI_REQPROBE Fa "struct vscsi_ioc_devevent *"
-.It VSCSI_REQDETACH Fa "struct vscsi_ioc_devevent *"
+.It Dv VSCSI_REQPROBE Fa "struct vscsi_ioc_devevent *"
+.It Dv VSCSI_REQDETACH Fa "struct vscsi_ioc_devevent *"
Request a probe or a detach of the device at the addresses specified by the
target and lun fields.
.Bd -literal -offset indent