Commit 6c1f1a02 authored by rmagueta's avatar rmagueta

Avoid CU from trying to access RC.nrmac

parent 4510041a
...@@ -143,9 +143,11 @@ void openair_nr_rrc_on(const protocol_ctxt_t *const ctxt_pP) { ...@@ -143,9 +143,11 @@ void openair_nr_rrc_on(const protocol_ctxt_t *const ctxt_pP) {
void enable_nr_rrc_processing_timer(module_id_t module_id, void enable_nr_rrc_processing_timer(module_id_t module_id,
rrc_gNB_ue_context_t *ue_context_pP, rrc_gNB_ue_context_t *ue_context_pP,
uint32_t delay_ms) { uint32_t delay_ms) {
ue_context_pP->ue_context.nr_rrc_processing_timer = 1; if (NODE_IS_DU(RC.nrrrc[module_id]->node_type) || NODE_IS_MONOLITHIC(RC.nrrrc[module_id]->node_type)) {
ue_context_pP->ue_context.nr_rrc_processing_delay = delay_ms; ue_context_pP->ue_context.nr_rrc_processing_timer = 1;
nr_rrc_mac_schedule_ue_enabled(module_id, ue_context_pP->ue_context.rnti, false); ue_context_pP->ue_context.nr_rrc_processing_delay = delay_ms;
nr_rrc_mac_schedule_ue_enabled(module_id, ue_context_pP->ue_context.rnti, false);
}
} }
///---------------------------------------------------------------------------------------------------------------/// ///---------------------------------------------------------------------------------------------------------------///
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment