MINOR: quic: Wrong loss delay computation

I really do not know where does this statement come from even after having
checked several drafts.
This commit is contained in:
Frédéric Lécaille 2022-02-14 13:56:42 +01:00 committed by Amaury Denoyelle
parent eca47d9a8a
commit 21db6f962b

View File

@ -1670,7 +1670,6 @@ static void qc_packet_loss_lookup(struct quic_pktns *pktns,
ql = &qc->path->loss;
loss_delay = QUIC_MAX(ql->latest_rtt, ql->srtt >> 3);
loss_delay += loss_delay >> 3;
loss_delay = QUIC_MAX(loss_delay, MS_TO_TICKS(QUIC_TIMER_GRANULARITY));
node = eb64_first(pkts);