netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Leon Romanovsky <leon@kernel.org>
To: Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>
Cc: Leon Romanovsky <leonro@nvidia.com>,
	Jason Gunthorpe <jgg@nvidia.com>,
	linux-kernel@vger.kernel.org, linux-rdma@vger.kernel.org,
	netdev@vger.kernel.org, Saeed Mahameed <saeedm@nvidia.com>,
	Tariq Toukan <tariqt@nvidia.com>
Subject: [PATCH mlx5-next 0/5] Drop Mellanox FPGA TLS support from the kernel
Date: Mon,  4 Apr 2022 15:08:14 +0300	[thread overview]
Message-ID: <cover.1649073691.git.leonro@nvidia.com> (raw)

From: Leon Romanovsky <leonro@nvidia.com>

Mellanox INNOVA TLS cards are EOL in May, 2018 [1]. As such, the code
is unmaintained, untested and not in-use by any upstream/distro oriented
customers. In order to reduce code complexity, drop the kernel code,
clean build config options and delete useless kTLS vs. TLS separation.
    
[1] https://network.nvidia.com/related-docs/eol/LCR-000286.pdf
    
Thanks

BTW, the target of this series is mlx5-next, as other series removes
FPGA IPsec together with relevant cleanup in RDMA side.

Leon Romanovsky (5):
  net/mlx5_fpga: Drop INNOVA TLS support
  net/mlx5: Reliably return TLS device capabilities
  net/mlx5: Remove indirection in TLS build
  net/mlx5: Remove tls vs. ktls separation as it is the same
  net/mlx5: Cleanup kTLS function names and their exposure

 .../net/ethernet/mellanox/mlx5/core/Kconfig   |  25 +-
 .../net/ethernet/mellanox/mlx5/core/Makefile  |   5 +-
 .../ethernet/mellanox/mlx5/core/accel/tls.c   | 125 ----
 .../ethernet/mellanox/mlx5/core/accel/tls.h   | 156 -----
 drivers/net/ethernet/mellanox/mlx5/core/en.h  |   1 -
 .../ethernet/mellanox/mlx5/core/en/params.c   |   6 +-
 .../mellanox/mlx5/core/en_accel/en_accel.h    |  11 +-
 .../mellanox/mlx5/core/en_accel/ktls.c        |  71 +-
 .../mellanox/mlx5/core/en_accel/ktls.h        |  86 ++-
 .../mellanox/mlx5/core/en_accel/ktls_rx.c     |   2 +-
 .../en_accel/{tls_stats.c => ktls_stats.c}    |  51 +-
 .../mellanox/mlx5/core/en_accel/ktls_tx.c     |  20 +-
 .../mellanox/mlx5/core/en_accel/ktls_txrx.h   |  28 +-
 .../mellanox/mlx5/core/en_accel/ktls_utils.h  |   1 -
 .../mellanox/mlx5/core/en_accel/tls.c         | 247 -------
 .../mellanox/mlx5/core/en_accel/tls.h         | 132 ----
 .../mellanox/mlx5/core/en_accel/tls_rxtx.c    | 390 -----------
 .../mellanox/mlx5/core/en_accel/tls_rxtx.h    |  91 ---
 .../net/ethernet/mellanox/mlx5/core/en_main.c |  12 +-
 .../net/ethernet/mellanox/mlx5/core/en_rx.c   |   5 +-
 .../ethernet/mellanox/mlx5/core/en_stats.c    |   8 +-
 .../ethernet/mellanox/mlx5/core/fpga/core.h   |   1 -
 .../ethernet/mellanox/mlx5/core/fpga/tls.c    | 622 ------------------
 .../ethernet/mellanox/mlx5/core/fpga/tls.h    |  74 ---
 drivers/net/ethernet/mellanox/mlx5/core/fw.c  |   3 +-
 .../net/ethernet/mellanox/mlx5/core/main.c    |  10 -
 include/linux/mlx5/mlx5_ifc_fpga.h            |  63 --
 27 files changed, 221 insertions(+), 2025 deletions(-)
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/accel/tls.c
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/accel/tls.h
 rename drivers/net/ethernet/mellanox/mlx5/core/en_accel/{tls_stats.c => ktls_stats.c} (63%)
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls.c
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls.h
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls_rxtx.c
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls_rxtx.h
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.c
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.h

-- 
2.35.1


             reply	other threads:[~2022-04-04 12:08 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-04 12:08 Leon Romanovsky [this message]
2022-04-04 12:08 ` [PATCH mlx5-next 1/5] net/mlx5_fpga: Drop INNOVA TLS support Leon Romanovsky
2022-04-04 12:08 ` [PATCH mlx5-next 2/5] net/mlx5: Reliably return TLS device capabilities Leon Romanovsky
2022-04-04 12:08 ` [PATCH mlx5-next 3/5] net/mlx5: Remove indirection in TLS build Leon Romanovsky
2022-04-04 12:08 ` [PATCH mlx5-next 4/5] net/mlx5: Remove tls vs. ktls separation as it is the same Leon Romanovsky
2022-04-05  0:33   ` Saeed Mahameed
2022-04-05  5:43     ` Leon Romanovsky
2022-04-05 17:20       ` Saeed Mahameed
2022-04-05 18:32         ` Leon Romanovsky
2022-04-04 12:08 ` [PATCH mlx5-next 5/5] net/mlx5: Cleanup kTLS function names and their exposure Leon Romanovsky
2022-04-05  0:35 ` [PATCH mlx5-next 0/5] Drop Mellanox FPGA TLS support from the kernel Saeed Mahameed
2022-04-06  7:04 ` Leon Romanovsky

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=cover.1649073691.git.leonro@nvidia.com \
    --to=leon@kernel.org \
    --cc=jgg@nvidia.com \
    --cc=kuba@kernel.org \
    --cc=leonro@nvidia.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=saeedm@nvidia.com \
    --cc=tariqt@nvidia.com \
    /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;
as well as URLs for NNTP newsgroup(s).