Commit b49fd36c authored by Cedric Roux's avatar Cedric Roux

bugfix: fix calls to CCE_allocation_infeasible (bad format_flag)

parent ac6f09eb
...@@ -749,7 +749,7 @@ schedule_ue_spec( ...@@ -749,7 +749,7 @@ schedule_ue_spec(
UE_list->UE_template[CC_id][UE_id].oldmcs1[harq_pid]); UE_list->UE_template[CC_id][UE_id].oldmcs1[harq_pid]);
} }
if (!CCE_allocation_infeasible(module_idP,CC_id,0,subframeP, if (!CCE_allocation_infeasible(module_idP,CC_id,1,subframeP,
dl_config_pdu->dci_dl_pdu.dci_dl_pdu_rel8.aggregation_level, dl_config_pdu->dci_dl_pdu.dci_dl_pdu_rel8.aggregation_level,
rnti)) { rnti)) {
dl_req->number_dci++; dl_req->number_dci++;
......
...@@ -952,7 +952,7 @@ abort(); ...@@ -952,7 +952,7 @@ abort();
format0); format0);
*/ */
if (CCE_allocation_infeasible(module_idP,CC_id,2,subframeP,aggregation,rnti)) { if (CCE_allocation_infeasible(module_idP,CC_id,1,subframeP,aggregation,rnti)) {
LOG_W(MAC,"[eNB %d] frame %d subframe %d, UE %d/%x CC %d: not enough nCCE\n", module_idP,frameP,subframeP,UE_id,rnti,CC_id); LOG_W(MAC,"[eNB %d] frame %d subframe %d, UE %d/%x CC %d: not enough nCCE\n", module_idP,frameP,subframeP,UE_id,rnti,CC_id);
continue; // break; continue; // break;
} }
......
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