mbox series

[V2,for-next,0/6] Broadcom's driver update

Message ID 1594822619-4098-1-git-send-email-devesh.sharma@broadcom.com (mailing list archive)
Headers show
Series Broadcom's driver update | expand

Message

Devesh Sharma July 15, 2020, 2:16 p.m. UTC
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(-)

Comments

Jason Gunthorpe July 20, 2020, 7:41 p.m. UTC | #1
On Wed, Jul 15, 2020 at 10:16:53AM -0400, Devesh Sharma wrote:
> 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

Please use links to lore.kernel.org in future

> Changes V1 -> V2:
>     comment from Jason and Leon.
> 
> 
> 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

Applied to for next, thanks

Jason