diff options
author | jfv <jfv@FreeBSD.org> | 2015-01-12 18:43:34 +0000 |
---|---|---|
committer | jfv <jfv@FreeBSD.org> | 2015-01-12 18:43:34 +0000 |
commit | b5fde175b4d061d51469e84bd36e5d1810be6d52 (patch) | |
tree | 4cdc5758aca841d45ef31a3ab631561c8865e198 /sys/modules | |
parent | a5395845cc8d528f92633ef68d6cff9b28a42093 (diff) | |
download | FreeBSD-src-b5fde175b4d061d51469e84bd36e5d1810be6d52.zip FreeBSD-src-b5fde175b4d061d51469e84bd36e5d1810be6d52.tar.gz |
Intel I40E driver updates:
if_ixl to version 1.3.0, if_ixlv to version 1.2.0
- Major change in both drivers is to add RSS support
- In ixl fix some interface speed related issues, dual
speed was not changing correctly, KR/X media was not
displaying correctly (this has a workaround until a
more robust media handling is in place)
- Add a warning when using Dell NPAR and the speed is
less than 10G
- Wrap a queue hung message in IXL_DEBUG, as it is non-fatal,
and without tuning can display excessively
MFC after: 1 week
Diffstat (limited to 'sys/modules')
-rwxr-xr-x | sys/modules/ixl/Makefile | 2 | ||||
-rwxr-xr-x | sys/modules/ixlv/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/ixl/Makefile b/sys/modules/ixl/Makefile index 94189d0..7d2fca9 100755 --- a/sys/modules/ixl/Makefile +++ b/sys/modules/ixl/Makefile @@ -4,7 +4,7 @@ KMOD = if_ixl SRCS = device_if.h bus_if.h pci_if.h opt_bdg.h -SRCS += opt_inet.h opt_inet6.h +SRCS += opt_inet.h opt_inet6.h opt_rss.h SRCS += if_ixl.c ixl_txrx.c i40e_osdep.c # Shared source diff --git a/sys/modules/ixlv/Makefile b/sys/modules/ixlv/Makefile index 2b07977..2e51bb8 100755 --- a/sys/modules/ixlv/Makefile +++ b/sys/modules/ixlv/Makefile @@ -4,7 +4,7 @@ KMOD = if_ixlv SRCS = device_if.h bus_if.h pci_if.h opt_bdg.h -SRCS += opt_inet.h opt_inet6.h +SRCS += opt_inet.h opt_inet6.h opt_rss.h SRCS += if_ixlv.c ixlvc.c ixl_txrx.c i40e_osdep.c # Shared source |