From 7fd59789f2fb45bc4b59fd67a00b51241140d712 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Fri, 11 Jun 2021 09:39:20 +0200 Subject: [PATCH] MINOR: quic: Do not wakeup the xprt task on ACK receipt This is an old statement which was there before implemeting the PTO and packet loss detection. There is no reason to keep for now on. --- src/xprt_quic.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/xprt_quic.c b/src/xprt_quic.c index 98f4d7bab7..8836cacdfb 100644 --- a/src/xprt_quic.c +++ b/src/xprt_quic.c @@ -1881,7 +1881,6 @@ static int qc_parse_pkt_frms(struct quic_rx_packet *pkt, struct ssl_sock_ctx *ct MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, conn), conn->max_ack_delay)); quic_loss_srtt_update(&conn->path->loss, rtt_sample, ack_delay, conn); } - tasklet_wakeup(ctx->wait_event.tasklet); break; } case QUIC_FT_CRYPTO: -- 2.47.2