From 91eb2b78a7e56a727c14039b1a0e05969398f2b5 Mon Sep 17 00:00:00 2001 From: alfred Date: Sun, 29 Sep 2013 00:35:03 +0000 Subject: Update OFED to Linux 3.7 and update Mellanox drivers. Update the OFED Infiniband core to the version supplied in Linux version 3.7. The update to OFED is nearly all additional defines and functions with the exception of the addition of additional parameters to ib_register_device() and the reg_user_mr callback. In addition the ibcore (Infiniband core) and ipoib (IP over Infiniband) have both been made into completely loadable modules to facilitate testing of the OFED stack in FreeBSD. Finally the Mellanox Infiniband drivers are now updated to the latest version shipping with Linux 3.7. Submitted by: Mellanox FreeBSD driver team: Oded Shanoon (odeds mellanox.com), Meny Yossefi (menyy mellanox.com), Orit Moskovich (oritm mellanox.com) Approved by: re --- sys/modules/ipoib/Makefile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 sys/modules/ipoib/Makefile (limited to 'sys/modules/ipoib') diff --git a/sys/modules/ipoib/Makefile b/sys/modules/ipoib/Makefile new file mode 100644 index 0000000..11d5435 --- /dev/null +++ b/sys/modules/ipoib/Makefile @@ -0,0 +1,31 @@ +# $FreeBSD$ +.PATH: ${.CURDIR}/../../ofed/drivers/infiniband/ulp/ipoib +.PATH: ${.CURDIR}/../../ofed/include/linux + +.include + +KMOD = ipoib +SRCS = device_if.h bus_if.h opt_ofed.h vnode_if.h opt_inet.h opt_inet6.h +SRCS += ipoib_cm.c ipoib_ib.c ipoib_main.c ipoib_multicast.c ipoib_verbs.c ipoib.h +SRCS+= linux_compat.c linux_radix.c linux_idr.c + +CFLAGS+= -I${.CURDIR}/../../ofed/drivers/infiniband/ulp/ipoib +CFLAGS+= -I${.CURDIR}/../ibcore +CFLAGS+= -I${.CURDIR}/../../ofed/include/ +CFLAGS+= -DINET6 -DINET -DOFED + +.if !defined(KERNBUILDDIR) +.if ${MK_INET_SUPPORT} != "no" +opt_inet.h: + @echo "#define INET 1" > ${.TARGET} +.endif + +.if ${MK_INET6_SUPPORT} != "no" +opt_inet6.h: + @echo "#define INET6 1" > ${.TARGET} +.endif +.endif + +.include + +CFLAGS+= -Wno-cast-qual -Wno-pointer-arith -fms-extensions -- cgit v1.1