diff options
author | Jakub Kicinski <kuba@kernel.org> | 2022-07-22 16:50:30 -0700 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-07-26 14:38:51 -0700 |
commit | d4e5db6452211467f668521f5a3bd3c3928918e1 (patch) | |
tree | df5863e1025a26d4ed2842d7c2e38761ec306b50 /net/tls/tls.h | |
parent | b93f5700164dabc59f5c82857dbe571e0ccb2d35 (diff) |
tls: rx: device: keep the zero copy status with offload
The non-zero-copy path assumes a full skb with decrypted contents.
This means the device offload would have to CoW the data. Try
to keep the zero-copy status instead, copy the data to user space.
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/tls/tls.h')
-rw-r--r-- | net/tls/tls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/tls/tls.h b/net/tls/tls.h index 24bec1c5f1e8..78c5d699bf75 100644 --- a/net/tls/tls.h +++ b/net/tls/tls.h @@ -127,6 +127,7 @@ int tls_sw_fallback_init(struct sock *sk, struct tls_offload_context_tx *offload_ctx, struct tls_crypto_info *crypto_info); +struct sk_buff *tls_strp_msg_detach(struct tls_sw_context_rx *ctx); int tls_strp_msg_hold(struct sock *sk, struct sk_buff *skb, struct sk_buff_head *dst); |