From 316c213ca2e025d3320f0f1934e9dba229ba9699 Mon Sep 17 00:00:00 2001 From: jthomas43 <129407891+jthomas43@users.noreply.github.com> Date: Wed, 29 May 2024 09:12:54 +0200 Subject: [PATCH] set tlp_in_flight (#186) Co-authored-by: James Thomas --- src/udx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/udx.c b/src/udx.c index 5ccdc0d8..fd2762f7 100644 --- a/src/udx.c +++ b/src/udx.c @@ -949,8 +949,9 @@ udx__confirm_packet (udx_packet_t *pkt) { // rack 7.3 if (pkt->is_tlp) { + stream->tlp_in_flight = true; stream->tlp_end_seq = pkt->seq; - debug_printf("tlp: sent seq=%u\n", stream->tlp_end_seq); + debug_printf("tlp: sent seq=%u %s\n", stream->tlp_end_seq, stream->tlp_is_retrans ? " retransmission" : ""); } // if (pkt->transmits > 1) {