diff options
author | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2024-11-02 04:37:21 +0000 |
---|---|---|
committer | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2024-11-02 04:37:21 +0000 |
commit | 4f7f276494e2f0894ee5b8a73031df85e0d65474 (patch) | |
tree | 5f0a1af6f8ec65e68f194e2794f3253e581e5126 /share/man/man4 | |
parent | 8b888e6b8fba8f91bf27465970f5c209a57c333d (diff) |
Add ixv(4), a driver for virtual functions of Intel 82598EB, 82559,
and X540. The driver was originally written by Intel and released as
ixv driver version 1.5.32 and ported to OpenBSD by Yuichiro NAITO,
naito.yuichiro at gmail.com. tested by henson at acm.org and many
others.
ok jmatthew
Diffstat (limited to 'share/man/man4')
-rw-r--r-- | share/man/man4/Makefile | 4 | ||||
-rw-r--r-- | share/man/man4/ixv.4 | 57 |
2 files changed, 59 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index fbef6aff9eb..8a8004bd8b8 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.851 2024/09/04 11:12:53 jsg Exp $ +# $OpenBSD: Makefile,v 1.852 2024/11/02 04:37:20 yasuoka Exp $ MAN= aac.4 abcrtc.4 abl.4 ac97.4 acphy.4 acrtc.4 \ acpi.4 acpiac.4 acpials.4 acpiasus.4 acpibat.4 \ @@ -50,7 +50,7 @@ MAN= aac.4 abcrtc.4 abl.4 ac97.4 acphy.4 acrtc.4 \ inet.4 inet6.4 inphy.4 intelpmc.4 \ iophy.4 iosf.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 iwx.4 ix.4 ixgb.4 ixl.4 \ + it.4 itherm.4 iwi.4 iwn.4 iwm.4 iwx.4 ix.4 ixv.4 ixgb.4 ixl.4 \ jmb.4 jme.4 jmphy.4 \ kate.4 kcov.4 km.4 ksmn.4 kstat.4 ksyms.4 kubsan.4 kue.4 \ lc.4 lge.4 lii.4 \ diff --git a/share/man/man4/ixv.4 b/share/man/man4/ixv.4 new file mode 100644 index 00000000000..2a3585618f6 --- /dev/null +++ b/share/man/man4/ixv.4 @@ -0,0 +1,57 @@ +.\" $OpenBSD: ixv.4,v 1.1 2024/11/02 04:37:20 yasuoka Exp $ +.\" +.\" Copyright (c) 2024 YASUOKA Masahiko <yasuoka@yasuoka.net> +.\" Copyright (c) 2019 Jonathan Matthew <jmatthew@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: November 2 2024 $ +.Dt IXV 4 +.Os +.Sh NAME +.Nm ixv +.Nd Intel 10Gb Ethernet Virtual Function device +.Sh SYNOPSIS +.Cd "ixv* at pci?" +.Sh DESCRIPTION +The +.Nm +driver supports the SR-IOV Virtual Functions of Intel 82598EB, +82559, and X540-based Ethernet controller devices. +.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 BUGS +The VF relies on +.Dq vlan-filter +to receive VLAN-tagged packets. +Because the current driver doesn't have a way to configure it, +any VLAN-tagged packets will not be passed. +Alternatively, +on the host running the primary function, +there might be a way to configure a VLAN ID. +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 7.7 . +.Sh AUTHORS +The +.Nm +driver was written by +Intel Corporation and ported to OpenBSD by NAITO Yuichiro. |