1
0
Fork 0

net/tls: Fix connection stall on partial tls record

[ Upstream commit 080324c36a ]

In the case of writing a partial tls record we forgot to clear the
ctx->in_tcp_sendpages flag, causing some connections to stall.

Fixes: c212d2c7fc ("net/tls: Don't recursively call push_record during tls_write_space callbacks")
Signed-off-by: Andre Tomt <andre@tomt.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
pull/10/head
Andre Tomt 2018-05-07 04:24:39 +02:00 committed by Greg Kroah-Hartman
parent 3ac0f3e0b8
commit 8e1b8e3279
1 changed files with 1 additions and 0 deletions

View File

@ -108,6 +108,7 @@ retry:
offset -= sg->offset;
ctx->partially_sent_offset = offset;
ctx->partially_sent_record = (void *)sg;
ctx->in_tcp_sendpages = false;
return ret;
}