mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
c618db2afe
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>
13 lines
293 B
Makefile
13 lines
293 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the TLS subsystem.
|
|
#
|
|
|
|
CFLAGS_trace.o := -I$(src)
|
|
|
|
obj-$(CONFIG_TLS) += tls.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
|