Skip to content

Commit 5121495

Browse files
frankistcodebot
authored andcommitted
du-high: do now warn on RLF detection when the UE context release is already under way
1 parent 4c70456 commit 5121495

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

lib/du_manager/du_ue/du_ue_controller_impl.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,10 @@ class srsran::srs_du::du_ue_controller_impl::rlf_state_machine
152152
// The release timer is not running yet. We need to store the cause and start the timer.
153153
current_cause = cause;
154154
auto timeout_val = get_release_timeout();
155-
logger.info("ue={}: RLF detected with cause=\"{}\". Timer of {} msec to release UE started...",
156-
ue_ctx.ue_index,
157-
get_rlf_cause_str(cause),
158-
timeout_val.count());
155+
logger.warning("ue={}: RLF detected with cause=\"{}\". Timer of {} msec to release UE started...",
156+
ue_ctx.ue_index,
157+
get_rlf_cause_str(cause),
158+
timeout_val.count());
159159

160160
// Start timer.
161161
release_timer.set(timeout_val, [this](timer_id_t tid) { trigger_ue_release(); });

lib/mac/mac_sched/rlf_detector.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class rlf_detector
9090
if (current_count == max_consecutive_kos[cell_index].max_consecutive_csi_dtx) {
9191
std::lock_guard<std::mutex> lock(u.notifier_mutex);
9292
if (u.notifier != nullptr) {
93-
logger.warning("ue={}: RLF detected. Cause: {} consecutive undecoded CSIs", ue_index, current_count);
93+
logger.info("ue={}: RLF detected. Cause: {} consecutive undecoded CSIs", ue_index, current_count);
9494

9595
// Notify upper layers.
9696
u.notifier->on_rlf_detected();
@@ -127,10 +127,10 @@ class rlf_detector
127127
if (current_count == max_counter) {
128128
std::lock_guard<std::mutex> lock(u.notifier_mutex);
129129
if (u.notifier != nullptr) {
130-
logger.warning("ue={}: RLF detected. Cause: {} consecutive {} KOs.",
131-
ue_index,
132-
current_count,
133-
is_dl ? "HARQ-ACK" : "CRC");
130+
logger.info("ue={}: RLF detected. Cause: {} consecutive {} KOs.",
131+
ue_index,
132+
current_count,
133+
is_dl ? "HARQ-ACK" : "CRC");
134134

135135
// Notify upper layers.
136136
u.notifier->on_rlf_detected();

0 commit comments

Comments
 (0)