-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]> Reviewed-by: Zhu Yanjun <[email protected]> Signed-off-by: Yuval Shaia <[email protected]> Signed-off-by: Marcel Apfelbaum <[email protected]>
- Loading branch information
1 parent
b3a9227
commit ef6d4cc
Showing
8 changed files
with
1,541 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Oops, something went wrong.