mbox series

[for-next,v2,0/2] Let RDMA-core manage certain objects

Message ID 20210729223010.31007-1-rpearsonhpe@gmail.com (mailing list archive)
Headers show
Series Let RDMA-core manage certain objects | expand

Message

Bob Pearson July 29, 2021, 10:30 p.m. UTC
The rxe driver duplicates work already done by rdma core. These patches
simplify the rxe driver removing the duplicate effort. The first patch
was already released. Version 2 adds a second patch.

These two patches should be applied after V2 "Three rxe bug fixes"
patches and V3 "Replace AV by AH in UD sends" patches applied to
the current for-next branch.

Bob Pearson (2):
  RDMA/rxe: Let rdma-core manage PDs
  RDMA/rxe: Let rdma-core manage CQs and SRQs

 drivers/infiniband/sw/rxe/rxe_av.c    |  2 +-
 drivers/infiniband/sw/rxe/rxe_comp.c  | 14 ++--
 drivers/infiniband/sw/rxe/rxe_loc.h   | 19 +-----
 drivers/infiniband/sw/rxe/rxe_mr.c    |  8 +--
 drivers/infiniband/sw/rxe/rxe_mw.c    | 31 ++++-----
 drivers/infiniband/sw/rxe/rxe_net.c   |  6 +-
 drivers/infiniband/sw/rxe/rxe_qp.c    | 92 +++++++++------------------
 drivers/infiniband/sw/rxe/rxe_recv.c  |  6 +-
 drivers/infiniband/sw/rxe/rxe_req.c   | 22 +++----
 drivers/infiniband/sw/rxe/rxe_resp.c  | 58 ++++++++---------
 drivers/infiniband/sw/rxe/rxe_verbs.c | 44 +++++--------
 drivers/infiniband/sw/rxe/rxe_verbs.h | 59 ++++++++++++++---
 12 files changed, 165 insertions(+), 196 deletions(-)

Comments

Jason Gunthorpe Aug. 27, 2021, 12:58 p.m. UTC | #1
On Thu, Jul 29, 2021 at 05:30:09PM -0500, Bob Pearson wrote:
> The rxe driver duplicates work already done by rdma core. These patches
> simplify the rxe driver removing the duplicate effort. The first patch
> was already released. Version 2 adds a second patch.
> 
> These two patches should be applied after V2 "Three rxe bug fixes"
> patches and V3 "Replace AV by AH in UD sends" patches applied to
> the current for-next branch.
> 
> Bob Pearson (2):
>   RDMA/rxe: Let rdma-core manage PDs
>   RDMA/rxe: Let rdma-core manage CQs and SRQs

It seems OK, but please rebase and resend this once rxe is fixed and
5.15-rc1 comes out

Jason