All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] Please pull mlx5-next changes
@ 2022-04-09  5:53 Leon Romanovsky
  2022-04-12  3:50 ` patchwork-bot+netdevbpf
  2022-04-12 13:57 ` Jason Gunthorpe
  0 siblings, 2 replies; 7+ messages in thread
From: Leon Romanovsky @ 2022-04-09  5:53 UTC (permalink / raw)
  To: Paolo Abeni, Jakub Kicinski, David S . Miller, Jason Gunthorpe
  Cc: Saeed Mahameed, linux-netdev, RDMA mailing list, Leon Romanovsky

The following changes since commit 3123109284176b1532874591f7c81f3837bbdc17:

  Linux 5.18-rc1 (2022-04-03 14:08:21 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/mellanox/linux.git mlx5-next

for you to fetch changes up to 2984287c4c19949d7eb451dcad0bd5c54a2a376f:

net/mlx5: Remove not-implemented IPsec capabilities (2022-04-09 08:25:07 +0300)
----------------------------------------------------------------
Mellanox shared branch that includes:
 * Removal of FPGA TLS code https://lore.kernel.org/all/cover.1649073691.git.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

 * Removal of FPGA IPsec code https://lore.kernel.org/all/cover.1649232994.git.leonro@nvidia.com

  Together with FPGA TLS, the IPsec went to EOL state in the November of
  2019 [1]. Exactly like FPGA TLS, no active customers exist for this
  upstream code and all the complexity around that area can be deleted.

  [2] https://network.nvidia.com/related-docs/eol/LCR-000535.pdf
   
 * Fix to undefined behavior from Borislav https://lore.kernel.org/all/20220405151517.29753-11-bp@alien8.de

Signed-of-by: Leon Romanovsky <leonro@nvidia.com>
----------------------------------------------------------------
Borislav Petkov (1):
      IB/mlx5: Fix undefined behavior due to shift overflowing the constant

Leon Romanovsky (22):
      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/mlx5_fpga: Drop INNOVA IPsec support
      net/mlx5: Delete metadata handling logic
      net/mlx5: Remove not-used IDA field from IPsec struct
      net/mlx5: Remove XFRM no_trailer flag
      net/mlx5: Remove FPGA ipsec specific statistics
      RDMA/mlx5: Delete never supported IPsec flow action
      RDMA/mlx5: Drop crypto flow steering API
      RDMA/core: Delete IPsec flow action logic from the core
      net/mlx5: Remove ipsec vs. ipsec offload file separation
      net/mlx5: Remove useless IPsec device checks
      net/mlx5: Unify device IPsec capabilities check
      net/mlx5: Align flow steering allocation namespace to common style
      net/mlx5: Remove not-needed IPsec config
      net/mlx5: Move IPsec file to relevant directory
      net/mlx5: Reduce kconfig complexity while building crypto support
      net/mlx5: Remove ipsec_ops function table
      net/mlx5: Remove not-implemented IPsec capabilities

 drivers/infiniband/core/device.c                   |    2 -
 .../infiniband/core/uverbs_std_types_flow_action.c |  383 +----
 drivers/infiniband/hw/mlx5/fs.c                    |  223 +--
 drivers/infiniband/hw/mlx5/main.c                  |   31 -
 drivers/net/ethernet/mellanox/mlx5/core/Kconfig    |   58 +-
 drivers/net/ethernet/mellanox/mlx5/core/Makefile   |   12 +-
 .../net/ethernet/mellanox/mlx5/core/accel/accel.h  |   36 -
 .../net/ethernet/mellanox/mlx5/core/accel/ipsec.c  |  179 ---
 .../net/ethernet/mellanox/mlx5/core/accel/ipsec.h  |   96 --
 .../mellanox/mlx5/core/accel/ipsec_offload.h       |   38 -
 .../net/ethernet/mellanox/mlx5/core/accel/tls.c    |  125 --
 .../net/ethernet/mellanox/mlx5/core/accel/tls.h    |  156 --
 drivers/net/ethernet/mellanox/mlx5/core/en.h       |    1 -
 .../net/ethernet/mellanox/mlx5/core/en/params.c    |   19 +-
 .../mellanox/mlx5/core/en_accel/en_accel.h         |   11 +-
 .../ethernet/mellanox/mlx5/core/en_accel/ipsec.c   |   30 +-
 .../ethernet/mellanox/mlx5/core/en_accel/ipsec.h   |   31 +-
 .../mellanox/mlx5/core/en_accel/ipsec_fs.c         |    5 +-
 .../mellanox/mlx5/core/en_accel/ipsec_fs.h         |    7 +-
 .../mlx5/core/{accel => en_accel}/ipsec_offload.c  |   95 +-
 .../mellanox/mlx5/core/en_accel/ipsec_offload.h    |   14 +
 .../mellanox/mlx5/core/en_accel/ipsec_rxtx.c       |  245 +--
 .../mellanox/mlx5/core/en_accel/ipsec_rxtx.h       |    3 -
 .../mellanox/mlx5/core/en_accel/ipsec_stats.c      |   63 +-
 .../ethernet/mellanox/mlx5/core/en_accel/ktls.c    |   71 +-
 .../ethernet/mellanox/mlx5/core/en_accel/ktls.h    |   86 +-
 .../ethernet/mellanox/mlx5/core/en_accel/ktls_rx.c |    2 +-
 .../core/en_accel/{tls_stats.c => ktls_stats.c}    |   51 +-
 .../ethernet/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 -
 .../net/ethernet/mellanox/mlx5/core/en_accel/tls.c |  247 ---
 .../net/ethernet/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 --
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  |   24 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_rep.c   |    1 -
 drivers/net/ethernet/mellanox/mlx5/core/en_rx.c    |   61 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_stats.c |    9 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_stats.h |    1 -
 .../net/ethernet/mellanox/mlx5/core/fpga/core.h    |    3 -
 .../net/ethernet/mellanox/mlx5/core/fpga/ipsec.c   | 1582 --------------------
 .../net/ethernet/mellanox/mlx5/core/fpga/ipsec.h   |   62 -
 drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.c |  622 --------
 drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.h |   74 -
 drivers/net/ethernet/mellanox/mlx5/core/fs_cmd.c   |    2 -
 drivers/net/ethernet/mellanox/mlx5/core/fs_core.c  |   15 +-
 drivers/net/ethernet/mellanox/mlx5/core/fw.c       |    3 +-
 drivers/net/ethernet/mellanox/mlx5/core/main.c     |   18 +-
 include/linux/mlx5/accel.h                         |   35 +-
 include/linux/mlx5/driver.h                        |    3 -
 include/linux/mlx5/mlx5_ifc_fpga.h                 |  211 ---
 include/linux/mlx5/port.h                          |    2 +-
 include/rdma/ib_verbs.h                            |    8 -
 54 files changed, 364 insertions(+), 5354 deletions(-)
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/accel/accel.h
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/accel/ipsec.c
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/accel/ipsec.h
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/accel/ipsec_offload.h
 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/{accel => en_accel}/ipsec_offload.c (84%)
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_offload.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/ipsec.c
 delete mode 100644 drivers/net/ethernet/mellanox/mlx5/core/fpga/ipsec.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

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

* Re: [GIT PULL] Please pull mlx5-next changes
  2022-04-09  5:53 [GIT PULL] Please pull mlx5-next changes Leon Romanovsky
@ 2022-04-12  3:50 ` patchwork-bot+netdevbpf
  2022-04-12 13:57 ` Jason Gunthorpe
  1 sibling, 0 replies; 7+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-04-12  3:50 UTC (permalink / raw)
  To: Leon Romanovsky
  Cc: pabeni, kuba, davem, jgg, saeedm, netdev, linux-rdma, leonro

Hello:

This pull request was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Sat,  9 Apr 2022 08:53:03 +0300 you wrote:
> The following changes since commit 3123109284176b1532874591f7c81f3837bbdc17:
> 
>   Linux 5.18-rc1 (2022-04-03 14:08:21 -0700)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/mellanox/linux.git mlx5-next
> 
> [...]

Here is the summary with links:
  - [GIT,PULL] Please pull mlx5-next changes
    https://git.kernel.org/netdev/net-next/c/e69a837f5801

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* Re: [GIT PULL] Please pull mlx5-next changes
  2022-04-09  5:53 [GIT PULL] Please pull mlx5-next changes Leon Romanovsky
  2022-04-12  3:50 ` patchwork-bot+netdevbpf
@ 2022-04-12 13:57 ` Jason Gunthorpe
  1 sibling, 0 replies; 7+ messages in thread
From: Jason Gunthorpe @ 2022-04-12 13:57 UTC (permalink / raw)
  To: Leon Romanovsky
  Cc: Paolo Abeni, Jakub Kicinski, David S . Miller, Saeed Mahameed,
	linux-netdev, RDMA mailing list, Leon Romanovsky

On Sat, Apr 09, 2022 at 08:53:03AM +0300, Leon Romanovsky wrote:
> The following changes since commit 3123109284176b1532874591f7c81f3837bbdc17:
> 
>   Linux 5.18-rc1 (2022-04-03 14:08:21 -0700)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/mellanox/linux.git mlx5-next
> 
> for you to fetch changes up to 2984287c4c19949d7eb451dcad0bd5c54a2a376f:
> 
> net/mlx5: Remove not-implemented IPsec capabilities (2022-04-09 08:25:07 +0300)
> ----------------------------------------------------------------
> Mellanox shared branch that includes:
>  * Removal of FPGA TLS code https://lore.kernel.org/all/cover.1649073691.git.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
> 
>  * Removal of FPGA IPsec code https://lore.kernel.org/all/cover.1649232994.git.leonro@nvidia.com
> 
>   Together with FPGA TLS, the IPsec went to EOL state in the November of
>   2019 [1]. Exactly like FPGA TLS, no active customers exist for this
>   upstream code and all the complexity around that area can be deleted.
> 
>   [2] https://network.nvidia.com/related-docs/eol/LCR-000535.pdf
>    
>  * Fix to undefined behavior from Borislav https://lore.kernel.org/all/20220405151517.29753-11-bp@alien8.de
> 
> Signed-of-by: Leon Romanovsky <leonro@nvidia.com>
> ----------------------------------------------------------------
> Borislav Petkov (1):
>       IB/mlx5: Fix undefined behavior due to shift overflowing the constant
> 
> Leon Romanovsky (22):
>       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/mlx5_fpga: Drop INNOVA IPsec support
>       net/mlx5: Delete metadata handling logic
>       net/mlx5: Remove not-used IDA field from IPsec struct
>       net/mlx5: Remove XFRM no_trailer flag
>       net/mlx5: Remove FPGA ipsec specific statistics
>       RDMA/mlx5: Delete never supported IPsec flow action
>       RDMA/mlx5: Drop crypto flow steering API
>       RDMA/core: Delete IPsec flow action logic from the core
>       net/mlx5: Remove ipsec vs. ipsec offload file separation
>       net/mlx5: Remove useless IPsec device checks
>       net/mlx5: Unify device IPsec capabilities check
>       net/mlx5: Align flow steering allocation namespace to common style
>       net/mlx5: Remove not-needed IPsec config
>       net/mlx5: Move IPsec file to relevant directory
>       net/mlx5: Reduce kconfig complexity while building crypto support
>       net/mlx5: Remove ipsec_ops function table
>       net/mlx5: Remove not-implemented IPsec capabilities

Pulled to rdma for-next

Thanks,
Jason

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

* Re: [GIT PULL] Please pull mlx5-next changes
  2023-02-16 19:37 ` Jakub Kicinski
@ 2023-02-19  9:05   ` Leon Romanovsky
  0 siblings, 0 replies; 7+ messages in thread
From: Leon Romanovsky @ 2023-02-19  9:05 UTC (permalink / raw)
  To: Jakub Kicinski
  Cc: Jason Gunthorpe, Paolo Abeni, David S . Miller, Saeed Mahameed,
	linux-netdev, RDMA mailing list

On Thu, Feb 16, 2023 at 11:37:22AM -0800, Jakub Kicinski wrote:
> On Wed, 15 Feb 2023 11:56:24 +0200 Leon Romanovsky wrote:
> > Following previous conversations [1] and our clear commitment to do the TC work [2],
> > please pull mlx5-next shared branch, which includes low-level steering logic to allow
> > RoCEv2 traffic to be encrypted/decrypted through IPsec.
> 
> I wish the assurances could have been given on the list but it is 
> what it is. Pulling to net-next as well, thanks.

Thanks a lot.

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

* Re: [GIT PULL] Please pull mlx5-next changes
  2023-02-15  9:56 Leon Romanovsky
  2023-02-16 19:37 ` Jakub Kicinski
@ 2023-02-16 19:40 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 7+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-02-16 19:40 UTC (permalink / raw)
  To: Leon Romanovsky; +Cc: jgg, pabeni, kuba, davem, saeedm, netdev, linux-rdma

Hello:

This pull request was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Wed, 15 Feb 2023 11:56:24 +0200 you wrote:
> Hi Jason,
> 
> Following previous conversations [1] and our clear commitment to do the TC work [2],
> please pull mlx5-next shared branch, which includes low-level steering logic to allow
> RoCEv2 traffic to be encrypted/decrypted through IPsec.
> 
> Thanks
> 
> [...]

Here is the summary with links:
  - [GIT,PULL] Please pull mlx5-next changes
    https://git.kernel.org/netdev/net-next/c/84cb1b53cdba

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* Re: [GIT PULL] Please pull mlx5-next changes
  2023-02-15  9:56 Leon Romanovsky
@ 2023-02-16 19:37 ` Jakub Kicinski
  2023-02-19  9:05   ` Leon Romanovsky
  2023-02-16 19:40 ` patchwork-bot+netdevbpf
  1 sibling, 1 reply; 7+ messages in thread
From: Jakub Kicinski @ 2023-02-16 19:37 UTC (permalink / raw)
  To: Leon Romanovsky
  Cc: Jason Gunthorpe, Paolo Abeni, David S . Miller, Saeed Mahameed,
	linux-netdev, RDMA mailing list

On Wed, 15 Feb 2023 11:56:24 +0200 Leon Romanovsky wrote:
> Following previous conversations [1] and our clear commitment to do the TC work [2],
> please pull mlx5-next shared branch, which includes low-level steering logic to allow
> RoCEv2 traffic to be encrypted/decrypted through IPsec.

I wish the assurances could have been given on the list but it is 
what it is. Pulling to net-next as well, thanks.

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

* [GIT PULL] Please pull mlx5-next changes
@ 2023-02-15  9:56 Leon Romanovsky
  2023-02-16 19:37 ` Jakub Kicinski
  2023-02-16 19:40 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 7+ messages in thread
From: Leon Romanovsky @ 2023-02-15  9:56 UTC (permalink / raw)
  To: Jason Gunthorpe
  Cc: Paolo Abeni, Jakub Kicinski, David S . Miller, Saeed Mahameed,
	linux-netdev, RDMA mailing list

Hi Jason,

Following previous conversations [1] and our clear commitment to do the TC work [2],
please pull mlx5-next shared branch, which includes low-level steering logic to allow
RoCEv2 traffic to be encrypted/decrypted through IPsec.

Thanks

[1] https://lore.kernel.org/all/20230126230815.224239-1-saeed@kernel.org/
[2] https://lore.kernel.org/all/Y+Z7lVVWqnRBiPh2@nvidia.com/

----------------------------------------------------------------


The following changes since commit dca55da0a15717dde509d17163946e951bad56c4:

  RDMA/mlx5: Track netdev to avoid deadlock during netdev notifier unregister (2023-02-08 20:40:57 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/mellanox/linux.git/ mlx5-next

for you to fetch changes up to 22551e77e5507a06114c0af2b92bbf1a66ec33c5:

  net/mlx5: Configure IPsec steering for egress RoCEv2 traffic (2023-02-15 11:30:07 +0200)

----------------------------------------------------------------
Mark Zhang (4):
      net/mlx5: Implement new destination type TABLE_TYPE
      net/mlx5: Add IPSec priorities in RDMA namespaces
      net/mlx5: Configure IPsec steering for ingress RoCEv2 traffic
      net/mlx5: Configure IPsec steering for egress RoCEv2 traffic

Patrisious Haddad (1):
      net/mlx5: Introduce new destination type TABLE_TYPE

 drivers/net/ethernet/mellanox/mlx5/core/Makefile                 |   2 +-
 drivers/net/ethernet/mellanox/mlx5/core/diag/fs_tracepoint.c     |   4 +
 drivers/net/ethernet/mellanox/mlx5/core/en/fs.h                  |   1 +
 drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.h         |   2 +
 drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_fs.c      |  54 ++++++-
 drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_offload.c |   5 +
 drivers/net/ethernet/mellanox/mlx5/core/fs_cmd.c                 |   6 +
 drivers/net/ethernet/mellanox/mlx5/core/fs_core.c                |  44 +++++-
 drivers/net/ethernet/mellanox/mlx5/core/lib/ipsec_fs_roce.c      | 368 +++++++++++++++++++++++++++++++++++++++++++++
 drivers/net/ethernet/mellanox/mlx5/core/lib/ipsec_fs_roce.h      |  25 +++
 include/linux/mlx5/fs.h                                          |   3 +
 include/linux/mlx5/mlx5_ifc.h                                    |  12 +-
 12 files changed, 511 insertions(+), 15 deletions(-)
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/lib/ipsec_fs_roce.c
 create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/lib/ipsec_fs_roce.h

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

end of thread, other threads:[~2023-02-19  9:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-09  5:53 [GIT PULL] Please pull mlx5-next changes Leon Romanovsky
2022-04-12  3:50 ` patchwork-bot+netdevbpf
2022-04-12 13:57 ` Jason Gunthorpe
2023-02-15  9:56 Leon Romanovsky
2023-02-16 19:37 ` Jakub Kicinski
2023-02-19  9:05   ` Leon Romanovsky
2023-02-16 19:40 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.