From ef6d4ccdc9eba3c184da08e76d52e5003325680b Mon Sep 17 00:00:00 2001 From: Yuval Shaia Date: Fri, 9 Feb 2018 15:23:18 +0200 Subject: hw/rdma: Implementation of generic rdma device layers This layer is composed of two sub-modules, backend and resource manager. Backend sub-module is responsible for all the interaction with IB layers such as ibverbs and umad (external libraries). Resource manager is a collection of functions and structures to manage RDMA resources such as QPs, CQs and MRs. Reviewed-by: Dotan Barak Reviewed-by: Zhu Yanjun Signed-off-by: Yuval Shaia Signed-off-by: Marcel Apfelbaum --- hw/rdma/Makefile.objs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/rdma/Makefile.objs') diff --git a/hw/rdma/Makefile.objs b/hw/rdma/Makefile.objs index cdffe4a9a3..6a59bf0d5b 100644 --- a/hw/rdma/Makefile.objs +++ b/hw/rdma/Makefile.objs @@ -1,3 +1,3 @@ ifeq ($(CONFIG_RDMA),y) -obj-$(CONFIG_PCI) += rdma_utils.o +obj-$(CONFIG_PCI) += rdma_utils.o rdma_backend.o rdma_rm.o endif -- cgit v1.2.3