summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2013-10-08 15:44:48 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2013-10-08 15:44:48 +0000
commitd423b14d219bdba6ee917447b5bff908182d89f4 (patch)
tree379d88ccdae4cbabf63f797f040a81ebd89bba5a
parent55c18f295d6e0316634800f1a60c23fa4362e2ac (diff)
basic manpage for a basic driver
-rw-r--r--share/man/man4/Makefile4
-rw-r--r--share/man/man4/vmwpvs.444
2 files changed, 46 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index 850c92ebdd9..00f2673498a 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.557 2013/10/07 05:56:58 yuo Exp $
+# $OpenBSD: Makefile,v 1.558 2013/10/08 15:44:47 dlg Exp $
MAN= aac.4 ac97.4 acphy.4 \
acpi.4 acpiac.4 acpiasus.4 acpibat.4 acpibtn.4 acpicpu.4 acpidock.4 \
@@ -67,7 +67,7 @@ MAN= aac.4 ac97.4 acphy.4 \
uvscom.4 uyap.4 \
vether.4 vga.4 vgafb.4 vge.4 \
viapm.4 viasio.4 vic.4 video.4 vio.4 vioblk.4 viomb.4 virtio.4 vlan.4 \
- vmt.4 vmx.4 vnd.4 vr.4 \
+ vmt.4 vmwpvs.4 vmx.4 vnd.4 vr.4 \
vscsi.4 vte.4 \
watchdog.4 wb.4 wbenv.4 wbng.4 wbsd.4 wbsio.4 wd.4 wdc.4 wdsc.4 we.4 \
wi.4 wpi.4 wscons.4 wsdisplay.4 wskbd.4 wsmouse.4 wsmux.4 \
diff --git a/share/man/man4/vmwpvs.4 b/share/man/man4/vmwpvs.4
new file mode 100644
index 00000000000..915eb40c071
--- /dev/null
+++ b/share/man/man4/vmwpvs.4
@@ -0,0 +1,44 @@
+.\" $OpenBSD: vmwpvs.4,v 1.1 2013/10/08 15:44:46 dlg Exp $
+.\"
+.\" Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
+.\"
+.\" Permission to use, copy, modify, and distribute this software for any
+.\" purpose with or without fee is hereby granted, provided that the above
+.\" copyright notice and this permission notice appear in all copies.
+.\"
+.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+.\"
+.Dd $Mdocdate: October 8 2013 $
+.Dt VMWPVS 4
+.Os
+.Sh NAME
+.Nm vmwpvs
+.Nd VMware Paravirtual SCSI
+.Sh SYNOPSIS
+.Cd "vmwpvs* at pci?"
+.Sh DESCRIPTION
+The
+.Nm
+driver provides support for storage controllers using the
+Paravirtual SCSI interface a VMware hypervisor can provide to its guests.
+.Sh SEE ALSO
+.Xr intro 4 ,
+.Xr pci 4 ,
+.Xr scsi 4
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 5.5 .
+.Sh AUTHORS
+.An -nosplit
+The
+.Nm
+driver was written by
+.An David Gwynne .