Commit fbd791d4 authored by Melissa Elkadi's avatar Melissa Elkadi

Removing unnecessary DCI filtering.

The DCIs are filtered already in the NRUE when
the NFAPI messages are handled.
parent a2a823d5
......@@ -599,13 +599,6 @@ int nr_ue_process_dci_indication_pdu(module_id_t module_id,int cc_id, int gNB_in
NR_UE_MAC_INST_t *mac = get_mac_inst(module_id);
dci_pdu_rel15_t *def_dci_pdu_rel15 = &mac->def_dci_pdu_rel15[dci->dci_format];
if ((mac->ra.ra_state == RA_SUCCEEDED) && (dci->rnti != mac->crnti)) {
LOG_D(MAC,"[%d %d] Discarding the received dci indication because rnti %4x "
"!= mac->crnti %4x after RA procedure is complete: (RA state %d)\n",
frame, slot, dci->rnti, mac->crnti, mac->ra.ra_state);
return -1;
}
LOG_D(MAC,"Received dci indication (rnti %x,dci format %d,n_CCE %d,payloadSize %d,payload %llx)\n",
dci->rnti,dci->dci_format,dci->n_CCE,dci->payloadSize,*(unsigned long long*)dci->payloadBits);
int8_t ret = nr_extract_dci_info(mac, dci->dci_format, dci->payloadSize, dci->rnti, (uint64_t *)dci->payloadBits, def_dci_pdu_rel15);
......
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