This series is mainly focused on adding driver fast path changes to support variable sized wqe support. There are five patches in this series. The first patch is taking care of passing wqe mode through driver load sequence. The second patch is moving cqe polling logic on shadow queue indicies. Patch 0003 0004 and 0005 deal with changing post-send/post-recv to accomodate changes. The last patch 0006, adds a new co-maintainer's name. link to v1 series: https://www.spinics.net/lists/linux-rdma/msg92678.html Changes V1 -> V2: -- Splitted the first big patch in 5 smaller patches -- Dropped ABI related patch to address the review comment from Jason and Leon. -- added new patch to update maintainer's list Devesh Sharma (6): RDMA/bnxt_re: introduce wqe mode to select execution path RDMA/bnxt_re: introduce a function to allocate swq RDMA/bnxt_re: Pull psn buffer dynamically based on prod RDMA/bnxt_re: Add helper data structures RDMA/bnxt_re: Change wr posting logic to accommodate variable wqes RDMA/bnxt_re: Update maintainers for Broadcom rdma driver MAINTAINERS | 1 + drivers/infiniband/hw/bnxt_re/ib_verbs.c | 168 +++++-- drivers/infiniband/hw/bnxt_re/ib_verbs.h | 8 +- drivers/infiniband/hw/bnxt_re/main.c | 23 +- drivers/infiniband/hw/bnxt_re/qplib_fp.c | 751 +++++++++++++++++------------- drivers/infiniband/hw/bnxt_re/qplib_fp.h | 127 ++++- drivers/infiniband/hw/bnxt_re/qplib_res.h | 58 ++- drivers/infiniband/hw/bnxt_re/roce_hsi.h | 1 + 8 files changed, 743 insertions(+), 394 deletions(-) -- 1.8.3.1