cdcd52d41e
This is an initial commit for RDMA FreeBSD driver for Intel(R) Ethernet Controller E810, called irdma. Supporting both RoCEv2 and iWARP protocols in per-PF manner, RoCEv2 being the default. Testing has been done using krping tool, perftest, ucmatose, rping, ud_pingpong, rc_pingpong and others. Signed-off-by: Eric Joyner <erj@FreeBSD.org> Reviewed by: #manpages (pauamma_gundo.com) [documentation] MFC after: 1 week Relnotes: yes Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D34690
11 lines
211 B
Makefile
11 lines
211 B
Makefile
# $FreeBSD$
|
|
|
|
_spath=${SRCTOP}/contrib/ofed/librdmacm
|
|
.PATH: ${_spath}/examples ${_spath}/man
|
|
|
|
BINDIR?= /usr/bin
|
|
CFLAGS+= -I${SRCTOP}/contrib/ofed
|
|
LIBADD+= ibverbs rdmacm irdma mlx4 mlx5 cxgb4 pthread
|
|
|
|
WARNS?= 0
|