57d5dd7907
driver. This change significantly increases the overall RX aggregation ratio for heavily loaded networks handling 10-80 thousand simultaneous connections. Remove the turbo LRO code and all references to it which has now been superceeded by the tcp_lro_queue_mbuf() function. Tested by: Netflix Sponsored by: Mellanox Technologies MFC after: 1 week
29 lines
601 B
Makefile
29 lines
601 B
Makefile
# $FreeBSD$
|
|
.PATH: ${.CURDIR}/../../dev/mlx5/mlx5_en
|
|
|
|
KMOD=mlx5en
|
|
SRCS= \
|
|
mlx5_en_ethtool.c \
|
|
mlx5_en_main.c \
|
|
mlx5_en_tx.c \
|
|
mlx5_en_flow_table.c \
|
|
mlx5_en_rx.c \
|
|
mlx5_en_txrx.c \
|
|
device_if.h bus_if.h vnode_if.h pci_if.h \
|
|
opt_inet.h opt_inet6.h opt_rss.h
|
|
|
|
.if defined(HAVE_PER_CQ_EVENT_PACKET)
|
|
CFLAGS+= -DHAVE_PER_CQ_EVENT_PACKET
|
|
.endif
|
|
|
|
.if defined(HAVE_TCP_LRO_RX)
|
|
CFLAGS+= -DHAVE_TCP_LRO_RX
|
|
.endif
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../ofed/include
|
|
CFLAGS+= -I${.CURDIR}/../../compat/linuxkpi/common/include
|
|
|
|
.include <bsd.kmod.mk>
|
|
|
|
CFLAGS+= -Wno-cast-qual -Wno-pointer-arith ${GCC_MS_EXTENSIONS}
|