diff options
author | Jakub Kicinski <[email protected]> | 2022-06-20 12:13:52 -0700 |
---|---|---|
committer | Paolo Abeni <[email protected]> | 2022-06-23 10:08:30 +0200 |
commit | 1b205d948fbb06a7613d87dcea0ff5fd8a08ed91 (patch) | |
tree | 025c62a759f9dc10748bf36ac9502b100281c984 | |
parent | 8af52fe9fd3bf5e7478da99193c0632276e1dfce (diff) |
Revert "net/tls: fix tls_sk_proto_close executed repeatedly"
This reverts commit 69135c572d1f84261a6de2a1268513a7e71753e2.
This commit was just papering over the issue, ULP should not
get ->update() called with its own sk_prot. Each ULP would
need to add this check.
Fixes: 69135c572d1f ("net/tls: fix tls_sk_proto_close executed repeatedly")
Signed-off-by: Jakub Kicinski <[email protected]>
Reviewed-by: John Fastabend <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Paolo Abeni <[email protected]>
-rw-r--r-- | net/tls/tls_main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/tls/tls_main.c b/net/tls/tls_main.c index 46bd5f26338b..da176411c1b5 100644 --- a/net/tls/tls_main.c +++ b/net/tls/tls_main.c @@ -921,9 +921,6 @@ static void tls_update(struct sock *sk, struct proto *p, { struct tls_context *ctx; - if (sk->sk_prot == p) - return; - ctx = tls_get_ctx(sk); if (likely(ctx)) { ctx->sk_write_space = write_space; |