From 50f7fc644b910388d4d77b05f39c56719e5a8e02 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Mon, 31 May 2021 12:40:17 +0200 Subject: [PATCH] rlc_am_lte: log event when status prohibit timer expires --- lib/src/upper/rlc_am_lte.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/upper/rlc_am_lte.cc b/lib/src/upper/rlc_am_lte.cc index a17b0803b..1fa934fa1 100644 --- a/lib/src/upper/rlc_am_lte.cc +++ b/lib/src/upper/rlc_am_lte.cc @@ -582,6 +582,8 @@ void rlc_am_lte::rlc_am_lte_tx::timer_expired(uint32_t timeout_id) if ((retx_queue.empty() && tx_sdu_queue.size() == 0) || tx_window.size() >= RLC_AM_WINDOW_SIZE) { retransmit_pdu(vt_a); // TODO: TS says to send vt_s - 1 here } + } else if (status_prohibit_timer.is_valid() && status_prohibit_timer.id() == timeout_id) { + logger.debug("%s Status prohibit timer expired after %dms", RB_NAME, status_prohibit_timer.duration()); } lock.unlock();