This patch series uses the doorbell overflow recovery mechanism introduced in commit 36907cd5cd72 ("qed: Add doorbell overflow recovery mechanism") for rdma ( RoCE and iWARP ) The first three patches modify the core code to contain helper functions for managing mmap_xa inserting, getting and freeing entries. The code was taken almost as is from the efa driver. There is still an open discussion on whether we should take this even further and make the entire mmap generic. Until a decision is made, I only created the database API and modified the efa and qedr driver to use it. The doorbell recovery code will be based on the common code. Efa driver was compile tested only. rdma-core pull request #493 Changes from V5: - Switch between driver dealloc_ucontext and mmap_entries_remove. - No need to verify the key after using the key to load an entry from the mmap_xa. - Change mmap_free api to pass an 'entry' object. - Add documentation for mmap_free and for newly exported functions. - Fix some extra/missing line breaks. Changes from V4: - Add common mmap database and cookie helper functions. Changes from V3: - Remove casts from void to u8. Pointer arithmetic can be done on void - rebase to tip of rdma-next Changes from V2: - Don't use long-lived kmap. Instead use user-trigger mmap for the doorbell recovery entries. - Modify dpi_addr to be denoted with __iomem and avoid redundant casts Changes from V1: - call kmap to map virtual address into kernel space - modify db_rec_delete to be void - remove some cpu_to_le16 that were added to previous patch which are correct but not related to the overflow recovery mechanism. Will be submitted as part of a different patch Michal Kalderon (6): RDMA/core: Create mmap database and cookie helper functions RDMA/efa: Use the common mmap_xa helpers RDMA/qedr: Use the common mmap API qed*: Change dpi_addr to be denoted with __iomem RDMA/qedr: Add doorbell overflow recovery support RDMA/qedr: Add iWARP doorbell recovery support drivers/infiniband/core/device.c | 1 + drivers/infiniband/core/rdma_core.c | 1 + drivers/infiniband/core/uverbs_cmd.c | 1 + drivers/infiniband/core/uverbs_main.c | 135 +++++++++ drivers/infiniband/hw/efa/efa.h | 3 +- drivers/infiniband/hw/efa/efa_main.c | 1 + drivers/infiniband/hw/efa/efa_verbs.c | 186 +++--------- drivers/infiniband/hw/qedr/main.c | 3 +- drivers/infiniband/hw/qedr/qedr.h | 32 +- drivers/infiniband/hw/qedr/verbs.c | 463 ++++++++++++++++++++--------- drivers/infiniband/hw/qedr/verbs.h | 4 +- drivers/net/ethernet/qlogic/qed/qed_rdma.c | 5 +- include/linux/qed/qed_rdma_if.h | 2 +- include/rdma/ib_verbs.h | 46 +++ include/uapi/rdma/qedr-abi.h | 25 ++ 15 files changed, 600 insertions(+), 308 deletions(-) -- 2.14.5