diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2023-02-14 01:29:44 +0000 |
---|---|---|
committer | Eric Joyner <erj@FreeBSD.org> | 2023-02-14 01:29:44 +0000 |
commit | 8923de59054358980102ea5acda6c6dd58273957 (patch) | |
tree | 4477f73005b2a7e48c4c83b2d149f7f51c94fb28 /sys/modules/ice | |
parent | 3a3450eda6d4616df51a30f84a872d9d43669d78 (diff) | |
download | src-8923de59054358980102ea5acda6c6dd58273957.tar.gz src-8923de59054358980102ea5acda6c6dd58273957.zip |
ice(4): Update to 1.37.7-k
Notable changes include:
- DSCP QoS Support (leveraging support added in
rG9c950139051298831ce19d01ea5fb33ec6ea7f89)
- Improved PFC handling and TC queue assignments (now all remaining
queues are assigned to TC 0 when more than one TC is enabled and the
number of available queues does not evenly divide between them)
- Support for dumping the internal FW state for additional debugging by
Intel support
- Support for allowing "No FEC" to be a valid state for the LESM to
negotiate when using non-standard compliant modules
Also includes various bug fixes and smaller enhancements, too.
Signed-off-by: Eric Joyner <erj@FreeBSD.org>
Reviewed by: erj@
Tested by: Jeff Pieper <jeffrey.pieper@intel.com>
MFC after: 3 days
Relnotes: yes
Sponsored by: Intel Corporation
Differential Revision: https://reviews.freebsd.org/D38109
Diffstat (limited to 'sys/modules/ice')
-rw-r--r-- | sys/modules/ice/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/ice/Makefile b/sys/modules/ice/Makefile index 25774585c180..e4573c4122d8 100644 --- a/sys/modules/ice/Makefile +++ b/sys/modules/ice/Makefile @@ -14,7 +14,7 @@ SRCS += opt_inet.h opt_inet6.h opt_rss.h opt_iflib.h # Core source SRCS += ice_lib.c ice_osdep.c ice_resmgr.c ice_strings.c SRCS += ice_iflib_recovery_txrx.c ice_iflib_txrx.c if_ice_iflib.c -SRCS += ice_fw_logging.c +SRCS += ice_fw_logging.c ice_ddp_common.c # RDMA Client interface # TODO: Is this the right way to compile this? |