mbox series

[v2,0/5] RDMA: convert tasklets to use new

Message ID 20200903060637.424458-1-allen.lkml@gmail.com (mailing list archive)
Headers show
Series RDMA: convert tasklets to use new | expand

Message

Allen Sept. 3, 2020, 6:06 a.m. UTC
commit 12cc923f1ccc ("tasklet: Introduce new initialization API")'
introduced a new tasklet initialization API. This series converts
all the infiniband drivers to use the new tasklet_setup() API

The series is based on 5.9-rc3

v2:
 Fixed bnxt_re driver. Suggested by Jason.
 Fixed subject line.

Allen Pais (5):
  RDMA/bnxt_re: convert tasklets to use new tasklet_setup() API
  IB/hfi1: convert tasklets to use new tasklet_setup() API
  RDMA/i40iw: convert tasklets to use new tasklet_setup() API
  RDMA/qib: convert tasklets to use new tasklet_setup() API
  RDMA/rxe: convert tasklets to use new tasklet_setup() API

 drivers/infiniband/hw/bnxt_re/qplib_fp.c   |  7 +++----
 drivers/infiniband/hw/bnxt_re/qplib_rcfw.c | 11 +++++------
 drivers/infiniband/hw/hfi1/sdma.c          | 22 +++++++++++-----------
 drivers/infiniband/hw/i40iw/i40iw_main.c   | 14 +++++++-------
 drivers/infiniband/hw/qib/qib_iba7322.c    |  7 +++----
 drivers/infiniband/hw/qib/qib_sdma.c       | 10 +++++-----
 drivers/infiniband/sw/rxe/rxe_cq.c         |  6 +++---
 drivers/infiniband/sw/rxe/rxe_task.c       |  8 ++++----
 drivers/infiniband/sw/rxe/rxe_task.h       |  2 +-
 9 files changed, 42 insertions(+), 45 deletions(-)

Comments

Jason Gunthorpe Sept. 3, 2020, 3:06 p.m. UTC | #1
On Thu, Sep 03, 2020 at 11:36:32AM +0530, Allen Pais wrote:
> commit 12cc923f1ccc ("tasklet: Introduce new initialization API")'
> introduced a new tasklet initialization API. This series converts
> all the infiniband drivers to use the new tasklet_setup() API
> 
> The series is based on 5.9-rc3
> 
> v2:
>  Fixed bnxt_re driver. Suggested by Jason.
>  Fixed subject line.
> 
> Allen Pais (5):
>   RDMA/bnxt_re: convert tasklets to use new tasklet_setup() API
>   IB/hfi1: convert tasklets to use new tasklet_setup() API
>   RDMA/i40iw: convert tasklets to use new tasklet_setup() API
>   RDMA/qib: convert tasklets to use new tasklet_setup() API
>   RDMA/rxe: convert tasklets to use new tasklet_setup() API

Applied to for-next, thanks

Jason