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.
This commit is contained in:
Frédéric Lécaille 2021-06-11 09:39:20 +02:00 committed by Amaury Denoyelle
parent 2e7ffc9d31
commit 7fd59789f2

View File

@ -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)); 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); quic_loss_srtt_update(&conn->path->loss, rtt_sample, ack_delay, conn);
} }
tasklet_wakeup(ctx->wait_event.tasklet);
break; break;
} }
case QUIC_FT_CRYPTO: case QUIC_FT_CRYPTO: