bugfix, handover: Avoid sending UEContextReleaseRequest from Target eNB during S1 Handover due to UL KOs

master
Francisco 4 years ago committed by Francisco Paisana
parent b0a2f31478
commit 19af55b63d

@ -159,6 +159,13 @@ void rrc::ue::set_radiolink_ul_state(bool crc_res)
return;
}
if (mobility_handler->is_ho_running()) {
// Do not count UL KOs if handover is on-going.
// Source eNB should only rely in relocation timer
// Target eNB should either wait for UE to handover or explicit release by the MME
return;
}
// Count KOs in MAC and trigger release if it goes above a certain value.
// This is done to detect out-of-coverage UEs
if (phy_ul_rlf_timer.is_running()) {

Loading…
Cancel
Save