public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Leon Romanovsky <leon@kernel.org>
To: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
Cc: jgg@ziepe.ca, linux-rdma@vger.kernel.org
Subject: Re: [PATCH for-next 06/23] RDMA/hfi1: Remove opa_vnic
Date: Tue, 1 Jul 2025 15:38:53 +0300	[thread overview]
Message-ID: <20250701123853.GD6278@unreal> (raw)
In-Reply-To: <175129741787.1859400.7033099190800356659.stgit@awdrv-04.cornelisnetworks.com>

On Mon, Jun 30, 2025 at 11:30:17AM -0400, Dennis Dalessandro wrote:
> OPA Vnic has been abandoned and left to rot. Time to excise.
> 
> Signed-off-by: Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
> ---
>  Documentation/infiniband/opa_vnic.rst              |  159 ---
>  .../translations/zh_CN/infiniband/opa_vnic.rst     |  156 ---
>  MAINTAINERS                                        |    6 
>  drivers/infiniband/Kconfig                         |    2 
>  drivers/infiniband/hw/hfi1/Makefile                |    4 
>  drivers/infiniband/hw/hfi1/aspm.c                  |    2 
>  drivers/infiniband/hw/hfi1/chip.c                  |   54 -
>  drivers/infiniband/hw/hfi1/chip.h                  |    2 
>  drivers/infiniband/hw/hfi1/driver.c                |   13 
>  drivers/infiniband/hw/hfi1/hfi.h                   |   20 
>  drivers/infiniband/hw/hfi1/init.c                  |    4 
>  drivers/infiniband/hw/hfi1/mad.c                   |    1 
>  drivers/infiniband/hw/hfi1/msix.c                  |    4 
>  drivers/infiniband/hw/hfi1/netdev.h                |    8 
>  drivers/infiniband/hw/hfi1/netdev_rx.c             |    3 
>  drivers/infiniband/hw/hfi1/verbs.c                 |    2 
>  drivers/infiniband/hw/hfi1/vnic.h                  |  126 --
>  drivers/infiniband/hw/hfi1/vnic_main.c             |  615 ------------
>  drivers/infiniband/hw/hfi1/vnic_sdma.c             |  282 -----
>  drivers/infiniband/ulp/Makefile                    |    1 
>  drivers/infiniband/ulp/opa_vnic/Kconfig            |    9 
>  drivers/infiniband/ulp/opa_vnic/Makefile           |    9 
>  drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.c   |  513 ----------
>  drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.h   |  524 ----------
>  drivers/infiniband/ulp/opa_vnic/opa_vnic_ethtool.c |  183 ---
>  .../infiniband/ulp/opa_vnic/opa_vnic_internal.h    |  329 ------
>  drivers/infiniband/ulp/opa_vnic/opa_vnic_netdev.c  |  400 --------
>  drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.c    | 1056 --------------------
>  .../infiniband/ulp/opa_vnic/opa_vnic_vema_iface.c  |  390 -------
>  29 files changed, 20 insertions(+), 4857 deletions(-)
>  delete mode 100644 Documentation/infiniband/opa_vnic.rst
>  delete mode 100644 Documentation/translations/zh_CN/infiniband/opa_vnic.rst
>  delete mode 100644 drivers/infiniband/hw/hfi1/vnic.h
>  delete mode 100644 drivers/infiniband/hw/hfi1/vnic_main.c
>  delete mode 100644 drivers/infiniband/hw/hfi1/vnic_sdma.c
>  delete mode 100644 drivers/infiniband/ulp/opa_vnic/Kconfig
>  delete mode 100644 drivers/infiniband/ulp/opa_vnic/Makefile
>  delete mode 100644 drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.c
>  delete mode 100644 drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.h
>  delete mode 100644 drivers/infiniband/ulp/opa_vnic/opa_vnic_ethtool.c
>  delete mode 100644 drivers/infiniband/ulp/opa_vnic/opa_vnic_internal.h
>  delete mode 100644 drivers/infiniband/ulp/opa_vnic/opa_vnic_netdev.c
>  delete mode 100644 drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.c
>  delete mode 100644 drivers/infiniband/ulp/opa_vnic/opa_vnic_vema_iface.c

It is not complete, after applying the patch:
➜  kernel git:(wip/leon-for-next) git grep -c -i opa_vnic 
Documentation/driver-api/infiniband.rst:4
Documentation/infiniband/index.rst:1
Documentation/translations/zh_CN/infiniband/index.rst:1
include/rdma/ib_verbs.h:2
include/rdma/opa_vnic.h:24

Thanks

  reply	other threads:[~2025-07-01 12:38 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-30 15:29 [PATCH for-next 00/23] Migrate to hfi2 driver Dennis Dalessandro
2025-06-30 15:29 ` [PATCH for-next 01/23] RDMA/OPA: Update OPA link speed list Dennis Dalessandro
2025-06-30 15:29 ` [PATCH for-next 02/23] RDMA/rdmavt: Add ucontext alloc/dealloc passthrough Dennis Dalessandro
2025-06-30 15:30 ` [PATCH for-next 03/23] RDMA/rdmavt: Correct multi-port QP iteration Dennis Dalessandro
2025-06-30 15:30 ` [PATCH for-next 04/23] RDMA/rdmavt: Add driver mmap callback Dennis Dalessandro
2025-06-30 15:30 ` [PATCH for-next 05/23] RDMA/core: Add writev to uverbs file descriptor Dennis Dalessandro
2025-07-01 12:32   ` Leon Romanovsky
2025-07-01 13:57     ` Dennis Dalessandro
2025-07-01 16:04       ` Leon Romanovsky
2025-07-01 17:17         ` Dennis Dalessandro
2025-07-02  8:36           ` Leon Romanovsky
2025-06-30 15:30 ` [PATCH for-next 06/23] RDMA/hfi1: Remove opa_vnic Dennis Dalessandro
2025-07-01 12:38   ` Leon Romanovsky [this message]
2025-07-01 13:44     ` Dennis Dalessandro
2025-07-01 16:00       ` Leon Romanovsky
2025-07-01 17:19         ` Dennis Dalessandro
2025-06-30 15:30 ` [PATCH for-next 07/23] RDMA/hfi2: Consolidate ABI files and setup uverbs access Dennis Dalessandro
2025-06-30 15:30 ` [PATCH for-next 08/23] RDMA/hfi2: Start hfi2 driver by basing off of hfi1 Dennis Dalessandro
2025-06-30 15:30 ` [PATCH for-next 09/23] RDMA/hfi2: Add in HW register definition files Dennis Dalessandro
2025-06-30 15:30 ` [PATCH for-next 10/23] RDMA/hfi2: Add in HW register access support Dennis Dalessandro
2025-08-25 14:42   ` Jason Gunthorpe
2025-08-25 16:34     ` Dennis Dalessandro
2025-06-30 15:30 ` [PATCH for-next 11/23] RDMA/hfi2: Add in trace header files Dennis Dalessandro
2025-06-30 15:30 ` [PATCH for-next 12/23] RDMA/hfi2: Add in trace support Dennis Dalessandro
2025-06-30 15:30 ` [PATCH for-next 13/23] RDMA/hfi2: Add system core header files Dennis Dalessandro
2025-08-25 14:42   ` Jason Gunthorpe
2025-06-30 15:30 ` [PATCH for-next 14/23] RDMA/hfi2: Add system core support Dennis Dalessandro
2025-06-30 15:31 ` [PATCH for-next 15/23] RDMA/hfi2: Add in MAD handling related headers Dennis Dalessandro
2025-06-30 15:31 ` [PATCH for-next 16/23] RDMA/hfi2: Implement MAD handling Dennis Dalessandro
2025-06-30 15:31 ` [PATCH for-next 17/23] RDMA/hfi2: Add IO related headers Dennis Dalessandro
2025-06-30 15:31 ` [PATCH for-next 18/23] RDMA/hfi2: Implement data moving infrastructure Dennis Dalessandro
2025-06-30 15:31 ` [PATCH for-next 19/23] RDMA/hfi2: Add in support for verbs Dennis Dalessandro
2025-08-25 14:45   ` Jason Gunthorpe
2025-06-30 15:31 ` [PATCH for-next 20/23] RDMA/hfi2: Support ipoib Dennis Dalessandro
2025-06-30 15:31 ` [PATCH for-next 21/23] RDMA/hfi2: Add misc header files Dennis Dalessandro
2025-06-30 15:31 ` [PATCH for-next 22/23] RDMA/hfi2: Add the rest of the driver Dennis Dalessandro
2025-06-30 15:31 ` [PATCH for-next 23/23] RDMA/hfi2: Make it build Dennis Dalessandro

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250701123853.GD6278@unreal \
    --to=leon@kernel.org \
    --cc=dennis.dalessandro@cornelisnetworks.com \
    --cc=jgg@ziepe.ca \
    --cc=linux-rdma@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox