tls: rx: don't store the decryption status in socket context

Similar justification to previous change, the information
about decryption status belongs in the skb.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jakub Kicinski
2022-04-07 20:38:17 -07:00
committed by David S. Miller
parent c3f6bb7413
commit 7dc59c33d6
4 changed files with 9 additions and 6 deletions

View File

@@ -72,6 +72,7 @@ struct sk_skb_cb {
u64 temp_reg;
struct tls_msg {
u8 control;
u8 decrypted;
} tls;
};