summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordlg <dlg@openbsd.org>2019-01-19 00:27:04 +0000
committerdlg <dlg@openbsd.org>2019-01-19 00:27:04 +0000
commit789e5f8027e9dbe9d489c7367e9e38d651b1ce6c (patch)
treea3e9d05633a1bacea24e5bf2df1692d85ed3a158
parentactually set CAUSE_ENA on the rx and tx queues, and re-enable interrupts (diff)
downloadwireguard-openbsd-789e5f8027e9dbe9d489c7367e9e38d651b1ce6c.tar.xz
wireguard-openbsd-789e5f8027e9dbe9d489c7367e9e38d651b1ce6c.zip
jmatthew@ got my crappy ixl code to work, so I'm pretending to be
useful by writing the man page. suggested by jmatthew@
-rw-r--r--share/man/man4/Makefile4
-rw-r--r--share/man/man4/ixl.449
2 files changed, 51 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index f931ecac490..6242b03f4a3 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.700 2019/01/11 08:32:28 patrick Exp $
+# $OpenBSD: Makefile,v 1.701 2019/01/19 00:27:04 dlg Exp $
MAN= aac.4 abcrtc.4 ac97.4 acphy.4 acrtc.4 \
acpi.4 acpiac.4 acpials.4 acpiasus.4 acpibat.4 \
@@ -37,7 +37,7 @@ MAN= aac.4 abcrtc.4 ac97.4 acphy.4 acrtc.4 \
inet.4 inet6.4 inphy.4 iophy.4 \
ip.4 ip6.4 ipcomp.4 ipgphy.4 ipmi.4 ips.4 ipsec.4 ipw.4 \
isa.4 isagpio.4 isapnp.4 islrtc.4 it.4 itherm.4 iwi.4 iwn.4 iwm.4 \
- ix.4 ixgb.4 jmb.4 jme.4 jmphy.4 \
+ ix.4 ixgb.4 ixl.4 jmb.4 jme.4 jmphy.4 \
kate.4 kcov.4 km.4 ksyms.4 kue.4 lc.4 lge.4 lii.4 lisa.4 lm.4 \
lmenv.4 lmn.4 lmtemp.4 lo.4 lpt.4 lxtphy.4 luphy.4 \
maestro.4 mainbus.4 malo.4 maxds.4 maxrtc.4 maxtmp.4 mbg.4 midi.4 \
diff --git a/share/man/man4/ixl.4 b/share/man/man4/ixl.4
new file mode 100644
index 00000000000..d8dc14fa759
--- /dev/null
+++ b/share/man/man4/ixl.4
@@ -0,0 +1,49 @@
+.\" $OpenBSD: ixl.4,v 1.1 2019/01/19 00:27:04 dlg Exp $
+.\"
+.\" Copyright (c) 2019 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: January 19 2019 $
+.Dt IXL 4
+.Os
+.Sh NAME
+.Nm ixl
+.Nd Intel Ethernet 700 Series Controller device
+.Sh SYNOPSIS
+.Cd "ixl* at pci?"
+.Sh DESCRIPTION
+The
+.Nm
+driver supports Intel 700 Series Controller devices based on the
+Intel X710, XXV710, and XL710 Ethernet chipsets.
+.Sh SEE ALSO
+.Xr arp 4 ,
+.Xr ifmedia 4 ,
+.Xr intro 4 ,
+.Xr netintro 4 ,
+.Xr pci 4 ,
+.Xr hostname.if 5 ,
+.Xr ifconfig 8
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 6.5 .
+.Sh AUTHORS
+The
+.Nm
+driver was written by
+.An David Gwynne Aq Mt dlg@openbsd.org
+and
+.An Jonathan Matthew Aq Mt jmatthew@openbsd.org .