mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 09:56:47 -05:00
- Adds FW logging support
- Once enabled, this lets the firmware print event and error messages
to the log, increasing the visibility into what the hardware is
doing; this is useful for debugging
- General bug fixes
- Adds inital DCB support to the driver
- Notably, this adds support for DCBX to the driver; now with the
fw_lldp sysctl set to 1, the driver and adapter will adopt a DCBX
configuration sent from a link partner
- Adds statistcs sysctls for priority flow control frames
- Adds new configuration sysctls for DCB-related features: (VLAN) user
priority to TC mapping; ETS bandwidth allocation; priority flow
control
- Remove unused SR-IOV files (until support gets added)
Signed-off-by: Eric Joyner <erj@FreeBSD.org>
Tested by: jeffrey.e.pieper@intel.com
MFC after: 3 days
MFC with: 213e91399b, e438f0a975
Relnotes: yes
Sponsored by: Intel Corporation
Differential Revision: https://reviews.freebsd.org/D34024
16 lines
511 B
Makefile
16 lines
511 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/ice
|
|
|
|
KMOD = if_ice
|
|
SRCS = device_if.h bus_if.h pci_if.h ifdi_if.h
|
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h opt_iflib.h
|
|
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
|
|
|
|
# Shared source
|
|
SRCS += ice_common.c ice_controlq.c ice_dcb.c ice_flex_pipe.c ice_flow.c
|
|
SRCS += ice_nvm.c ice_sched.c ice_switch.c ice_vlan_mode.c ice_fwlog.c
|
|
|
|
.include <bsd.kmod.mk>
|