diff options
author | Jakub Kicinski <kuba@kernel.org> | 2022-07-15 07:22:33 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-07-18 12:24:11 +0200 |
commit | c618db2afe7c31d13ca8cf05b60f17165fbdc282 (patch) | |
tree | aa66b80b665d2a52d9149377e2df3de0dfd8d6f1 /net/tls/Makefile | |
parent | tls: rx: async: adjust record geometry immediately (diff) | |
download | linux-c618db2afe7c31d13ca8cf05b60f17165fbdc282.tar.xz linux-c618db2afe7c31d13ca8cf05b60f17165fbdc282.zip |
tls: rx: async: hold onto the input skb
Async crypto currently benefits from the fact that we decrypt
in place. When we allow input and output to be different skbs
we will have to hang onto the input while we move to the next
record. Clone the inputs and keep them on a list.
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tls/Makefile')
-rw-r--r-- | net/tls/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tls/Makefile b/net/tls/Makefile index f1ffbfe8968d..e41c800489ac 100644 --- a/net/tls/Makefile +++ b/net/tls/Makefile @@ -7,7 +7,7 @@ CFLAGS_trace.o := -I$(src) obj-$(CONFIG_TLS) += tls.o -tls-y := tls_main.o tls_sw.o tls_proc.o trace.o +tls-y := tls_main.o tls_sw.o tls_proc.o trace.o tls_strp.o tls-$(CONFIG_TLS_TOE) += tls_toe.o tls-$(CONFIG_TLS_DEVICE) += tls_device.o tls_device_fallback.o |