1031d839aa
Update the driver to use iflib in order to bring performance, maintainability, and (hopefully) stability benefits to the driver. The driver currently isn't completely ported; features that are missing: - VF driver (ixlv) - SR-IOV host support - RDMA support The plan is to have these re-added to the driver before the next FreeBSD release. Reviewed by: gallatin@ Contributions by: gallatin@, mmacy@, krzysztof.galazka@intel.com Tested by: jeffrey.e.pieper@intel.com MFC after: 1 month Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D15577
21 lines
521 B
Makefile
21 lines
521 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/ixl
|
|
|
|
KMOD = if_ixl
|
|
SRCS = device_if.h bus_if.h pci_if.h ifdi_if.h
|
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h opt_ixl.h opt_iflib.h
|
|
SRCS += if_ixl.c ixl_pf_main.c ixl_pf_qmgr.c ixl_txrx.c ixl_pf_i2c.c i40e_osdep.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
|
|
|
|
#CFLAGS += -DIXL_IW
|
|
#SRCS += ixl_iw.c
|
|
|
|
.include <bsd.kmod.mk>
|