Skip to content

Commit

Permalink
Fix sched: don't stop scheduling cycle if a single ue is out of range
Browse files Browse the repository at this point in the history
  • Loading branch information
tommasozugno authored Jun 21, 2021
1 parent 4ff9e87 commit 06f252d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mmwave/model/mmwave-flex-tti-mac-scheduler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ MmWaveFlexTtiMacScheduler::DoSchedTriggerReq (const struct MmWaveMacSchedSapProv
if (cqi == 0 && !m_fixedMcsUl) // out of range (SINR too low)
{
NS_LOG_INFO ("*** RNTI " << ceBsrIt->first << " UL-CQI out of range, skipping allocation in UL");
break; // do not allocate UE in uplink
continue; // do not allocate UE in uplink
}
}
itUeInfo = ueInfo.find (ceBsrIt->first);
Expand Down

0 comments on commit 06f252d

Please sign in to comment.