ceebc2f348
Refresh upstream driver before impending conversion to iflib. Major changes: - Support for descriptor writeback mode (required by ixlv(4) for AVF support) - Ability to disable firmware LLDP agent by user (PR 221530) - Fix for TX queue hang when using TSO (PR 221919) - Separate descriptor ring sizes for TX and RX rings PR: 221530, 221919 Submitted by: Krzysztof Galazka <krzysztof.galazka@intel.com> Reviewed by: #IntelNetworking MFC after: 1 day Relnotes: Yes Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D14985
19 lines
476 B
Makefile
19 lines
476 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/ixl
|
|
|
|
KMOD = if_ixl
|
|
SRCS = device_if.h bus_if.h pci_if.h
|
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h opt_ixl.h
|
|
SRCS += if_ixl.c ixl_pf_main.c ixl_pf_qmgr.c ixl_txrx.c ixl_pf_i2c.c i40e_osdep.c
|
|
SRCS += ixl_iw.c
|
|
SRCS.PCI_IOV= pci_iov_if.h ixl_pf_iov.c
|
|
|
|
# Shared source
|
|
SRCS += i40e_common.c i40e_nvm.c i40e_adminq.c i40e_lan_hmc.c i40e_hmc.c i40e_dcb.c
|
|
|
|
# Debug messages / sysctls
|
|
# CFLAGS += -DIXL_DEBUG
|
|
|
|
.include <bsd.kmod.mk>
|