Commit df274139 authored by Robert Schmidt's avatar Robert Schmidt

Comments and AssertFatal()

parent d49fc993
...@@ -2093,7 +2093,6 @@ static void rrc_CU_process_ue_context_modification_response(MessageDef *msg_p, i ...@@ -2093,7 +2093,6 @@ static void rrc_CU_process_ue_context_modification_response(MessageDef *msg_p, i
} }
// send the F1 response message up to update F1-U tunnel info // send the F1 response message up to update F1-U tunnel info
// it seems the rrc transaction id (xid) is not needed here
rrc->cucp_cuup.bearer_context_mod(&req, instance); rrc->cucp_cuup.bearer_context_mod(&req, instance);
} }
......
...@@ -476,10 +476,8 @@ int rrc_gNB_process_NGAP_INITIAL_CONTEXT_SETUP_REQ(MessageDef *msg_p, instance_t ...@@ -476,10 +476,8 @@ int rrc_gNB_process_NGAP_INITIAL_CONTEXT_SETUP_REQ(MessageDef *msg_p, instance_t
rrc_gNB_generate_SecurityModeCommand(&ctxt, ue_context_p, 0, NULL); rrc_gNB_generate_SecurityModeCommand(&ctxt, ue_context_p, 0, NULL);
} }
// in case, send the S1SP initial context response if it is not sent with the attach complete message
if (UE->StatusRrc == NR_RRC_RECONFIGURED) { if (UE->StatusRrc == NR_RRC_RECONFIGURED) {
LOG_I(NR_RRC, "Sending rrc_gNB_send_NGAP_INITIAL_CONTEXT_SETUP_RESP, cause %ld\n", UE->reestablishment_cause); AssertFatal(false, "for Robert: rrc_gNB_send_NGAP_INITIAL_CONTEXT_SETUP_RESP() here?");
rrc_gNB_send_NGAP_INITIAL_CONTEXT_SETUP_RESP(&ctxt, ue_context_p);
} }
return 0; return 0;
......
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