linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH rdma-next 0/2] Spring cleanup
@ 2021-03-14 13:39 Leon Romanovsky
  2021-03-22 13:00 ` Jason Gunthorpe
  0 siblings, 1 reply; 4+ messages in thread
From: Leon Romanovsky @ 2021-03-14 13:39 UTC (permalink / raw)
  To: Doug Ledford, Jason Gunthorpe
  Cc: Leon Romanovsky, Adit Ranadive, Bernard Metzler,
	Dennis Dalessandro, Faisal Latif, linux-kernel, linux-rdma,
	Mike Marciniszyn, Potnuri Bharat Teja, Shiraz Saleem,
	VMware PV-Drivers

From: Leon Romanovsky <leonro@nvidia.com>

Bunch of cleanup in RDMA subsystem.

Leon Romanovsky (2):
  RDMA: Fix kernel-doc compilation warnings
  RDMA: Delete not-used static inline functions

 drivers/infiniband/hw/cxgb4/iw_cxgb4.h        | 11 ------
 drivers/infiniband/hw/cxgb4/t4.h              | 33 -----------------
 drivers/infiniband/hw/hfi1/chip.c             |  4 +--
 drivers/infiniband/hw/hfi1/chip.h             |  5 ---
 drivers/infiniband/hw/hfi1/driver.c           |  2 +-
 drivers/infiniband/hw/hfi1/exp_rcv.c          |  6 ++--
 drivers/infiniband/hw/hfi1/hfi.h              |  6 ----
 drivers/infiniband/hw/hfi1/init.c             |  3 +-
 drivers/infiniband/hw/hfi1/msix.c             | 12 +++----
 drivers/infiniband/hw/hfi1/netdev_rx.c        |  2 +-
 drivers/infiniband/hw/hfi1/sdma.c             |  2 +-
 drivers/infiniband/hw/hfi1/verbs_txreq.h      |  5 ---
 drivers/infiniband/hw/i40iw/i40iw.h           |  9 -----
 drivers/infiniband/hw/i40iw/i40iw_cm.c        |  4 +--
 drivers/infiniband/hw/i40iw/i40iw_hmc.c       |  4 +--
 drivers/infiniband/hw/i40iw/i40iw_main.c      |  2 +-
 drivers/infiniband/hw/i40iw/i40iw_osdep.h     | 22 ------------
 drivers/infiniband/hw/i40iw/i40iw_puda.c      |  2 +-
 drivers/infiniband/hw/i40iw/i40iw_utils.c     |  2 +-
 drivers/infiniband/hw/i40iw/i40iw_verbs.c     |  4 +--
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c  |  2 +-
 drivers/infiniband/hw/qib/qib.h               | 26 --------------
 drivers/infiniband/hw/qib/qib_common.h        |  7 ----
 drivers/infiniband/hw/qib/qib_file_ops.c      |  5 +--
 drivers/infiniband/hw/qib/qib_iba6120.c       |  2 +-
 drivers/infiniband/hw/qib/qib_iba7220.c       |  4 +--
 drivers/infiniband/hw/qib/qib_iba7322.c       |  4 +--
 drivers/infiniband/hw/qib/qib_init.c          |  2 +-
 drivers/infiniband/hw/vmw_pvrdma/pvrdma.h     | 10 ------
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c  |  2 +-
 .../infiniband/hw/vmw_pvrdma/pvrdma_verbs.h   | 35 -------------------
 drivers/infiniband/sw/siw/iwarp.h             | 13 -------
 drivers/infiniband/sw/siw/siw_mem.h           |  5 ---
 33 files changed, 36 insertions(+), 221 deletions(-)

--
2.30.2


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH rdma-next 0/2] Spring cleanup
  2021-03-14 13:39 [PATCH rdma-next 0/2] Spring cleanup Leon Romanovsky
@ 2021-03-22 13:00 ` Jason Gunthorpe
  2021-03-22 14:12   ` Leon Romanovsky
  0 siblings, 1 reply; 4+ messages in thread
From: Jason Gunthorpe @ 2021-03-22 13:00 UTC (permalink / raw)
  To: Leon Romanovsky
  Cc: Doug Ledford, Leon Romanovsky, Adit Ranadive, Bernard Metzler,
	Dennis Dalessandro, Faisal Latif, linux-kernel, linux-rdma,
	Mike Marciniszyn, Potnuri Bharat Teja, Shiraz Saleem,
	VMware PV-Drivers

On Sun, Mar 14, 2021 at 03:39:06PM +0200, Leon Romanovsky wrote:
> From: Leon Romanovsky <leonro@nvidia.com>
> 
> Bunch of cleanup in RDMA subsystem.
> 
> Leon Romanovsky (2):
>   RDMA: Fix kernel-doc compilation warnings
>   RDMA: Delete not-used static inline functions

Applied to for-next

How did you find the unused static inline functions?

Thanks,
Jason

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH rdma-next 0/2] Spring cleanup
  2021-03-22 13:00 ` Jason Gunthorpe
@ 2021-03-22 14:12   ` Leon Romanovsky
  2021-03-22 18:03     ` Adit Ranadive
  0 siblings, 1 reply; 4+ messages in thread
From: Leon Romanovsky @ 2021-03-22 14:12 UTC (permalink / raw)
  To: Jason Gunthorpe
  Cc: Doug Ledford, Adit Ranadive, Bernard Metzler, Dennis Dalessandro,
	Faisal Latif, linux-kernel, linux-rdma, Mike Marciniszyn,
	Potnuri Bharat Teja, Shiraz Saleem, VMware PV-Drivers

On Mon, Mar 22, 2021 at 10:00:12AM -0300, Jason Gunthorpe wrote:
> On Sun, Mar 14, 2021 at 03:39:06PM +0200, Leon Romanovsky wrote:
> > From: Leon Romanovsky <leonro@nvidia.com>
> > 
> > Bunch of cleanup in RDMA subsystem.
> > 
> > Leon Romanovsky (2):
> >   RDMA: Fix kernel-doc compilation warnings
> >   RDMA: Delete not-used static inline functions
> 
> Applied to for-next
> 
> How did you find the unused static inline functions?

Accidentally spotted such in pvrdma and later wrote one liner to create
me a list of functions to delete.

Thanks

> 
> Thanks,
> Jason

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH rdma-next 0/2] Spring cleanup
  2021-03-22 14:12   ` Leon Romanovsky
@ 2021-03-22 18:03     ` Adit Ranadive
  0 siblings, 0 replies; 4+ messages in thread
From: Adit Ranadive @ 2021-03-22 18:03 UTC (permalink / raw)
  To: Leon Romanovsky, Jason Gunthorpe
  Cc: Doug Ledford, Bernard Metzler, Dennis Dalessandro, Faisal Latif,
	linux-kernel, linux-rdma, Mike Marciniszyn, Potnuri Bharat Teja,
	Shiraz Saleem, VMware PV-Drivers

On 3/22/21 7:12 AM, Leon Romanovsky wrote:
> On Mon, Mar 22, 2021 at 10:00:12AM -0300, Jason Gunthorpe wrote:
>> On Sun, Mar 14, 2021 at 03:39:06PM +0200, Leon Romanovsky wrote:
>>> From: Leon Romanovsky <leonro@nvidia.com>
>>>
>>> Bunch of cleanup in RDMA subsystem.
>>>
>>> Leon Romanovsky (2):
>>>   RDMA: Fix kernel-doc compilation warnings
>>>   RDMA: Delete not-used static inline functions
>> Applied to for-next
>>
>> How did you find the unused static inline functions?
> Accidentally spotted such in pvrdma and later wrote one liner to create
> me a list of functions to delete.

Thanks for removing these.

> Thanks
>
>> Thanks,
>> Jason


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-03-22 18:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-14 13:39 [PATCH rdma-next 0/2] Spring cleanup Leon Romanovsky
2021-03-22 13:00 ` Jason Gunthorpe
2021-03-22 14:12   ` Leon Romanovsky
2021-03-22 18:03     ` Adit Ranadive

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).