]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'net-tls-separate-the-TLS-TOE-code-out'
authorDavid S. Miller <davem@davemloft.net>
Fri, 4 Oct 2019 21:07:07 +0000 (14:07 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 4 Oct 2019 21:07:07 +0000 (14:07 -0700)
commitf25d7a6226695c2f5cbc7eba9ffa112384de8c4e
tree8339b6e05b89e835450b9981b31c0a4df6677dce
parentea1ad6e0cf1d4a47ae6428a3c6eef7765082de60
parent046c61e6d2cf040aa9a0abd80840a1afdced17c9
Merge branch 'net-tls-separate-the-TLS-TOE-code-out'

Jakub Kicinski says:

====================
net/tls: separate the TLS TOE code out

We have 3 modes of operation of TLS - software, crypto offload
(Mellanox, Netronome) and TCP Offload Engine-based (Chelsio).
The last one takes over the socket, like any TOE would, and
is not really compatible with how we want to do things in the
networking stack.

Confusingly the name of the crypto-only offload mode is TLS_HW,
while TOE-offload related functions use tls_hw_ as their prefix.

Engineers looking to implement offload are also be faced with
TOE artefacts like struct tls_device (while, again,
CONFIG_TLS_DEVICE actually gates the non-TOE offload).

To improve the clarity of the offload code move the TOE code
into new files, and rename the functions and structures
appropriately.

Because TOE-offload takes over the socket, and makes no use of
the TLS infrastructure in the kernel, the rest of the code
(anything beyond the ULP setup handlers) do not have to worry
about the mode == TLS_HW_RECORD case.

The increase in code size is due to duplication of the full
license boilerplate. Unfortunately original author (Dave Watson)
seems unreachable :(
====================

Signed-off-by: David S. Miller <davem@davemloft.net>