From 20834d6947d7916fcbfeef4cede56105a341859e Mon Sep 17 00:00:00 2001 From: Rohit Gupta <rohit.gupta@eurecom.fr> Date: Wed, 27 Jan 2016 19:10:09 +0100 Subject: [PATCH] hotfix for CCE bug --- openair2/LAYER2/MAC/eNB_scheduler_primitives.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openair2/LAYER2/MAC/eNB_scheduler_primitives.c b/openair2/LAYER2/MAC/eNB_scheduler_primitives.c index 20b1f6d7354..9cabd6b6223 100644 --- a/openair2/LAYER2/MAC/eNB_scheduler_primitives.c +++ b/openair2/LAYER2/MAC/eNB_scheduler_primitives.c @@ -1101,8 +1101,9 @@ boolean_t CCE_allocation_infeasible(int module_idP, DCI_pdu->Num_ue_spec_dci++; ret = allocate_CCEs(module_idP,CC_idP,subframe,1); if (ret==-1) - res = FALSE; + res = TRUE; DCI_pdu->Num_ue_spec_dci--; } + return(res); } -- GitLab