1
0
mirror of https://passt.top/passt synced 2024-07-03 00:12:41 +00:00

pasta, tcp: Don't reset 'never_read' flag on write retries

Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
Stefano Brivio 2021-09-16 08:26:01 +02:00
parent 7ecf693297
commit e8540b3f26

5
tcp.c
View File

@ -2577,7 +2577,7 @@ static void tcp_conn_from_sock(struct ctx *c, union epoll_ref ref,
void tcp_sock_handler_splice(struct ctx *c, union epoll_ref ref,
uint32_t events)
{
int move_from, move_to, *pipes, eof;
int move_from, move_to, *pipes, eof, never_read;
struct tcp_splice_conn *conn;
struct epoll_event ev;
@ -2657,9 +2657,10 @@ void tcp_sock_handler_splice(struct ctx *c, union epoll_ref ref,
swap:
eof = 0;
never_read = 1;
while (1) {
int never_read = 1, retry_write = 1;
int retry_write = 1;
ssize_t read, to_write = 0, written;
retry: