23 #include <ns3/pointer.h>
26 #include <ns3/simulator.h>
27 #include <ns3/lte-amc.h>
28 #include <ns3/tdmt-ff-mac-scheduler.h>
29 #include <ns3/lte-vendor-specific-parameters.h>
30 #include <ns3/boolean.h>
141 : m_scheduler (scheduler)
216 : m_cschedSapUser (0),
220 m_amc = CreateObject <LteAmc> ();
250 .AddConstructor<TdMtFfMacScheduler> ()
251 .AddAttribute (
"CqiTimerThreshold",
252 "The number of TTIs a CQI is valid (default 1000 - 1 sec.)",
255 MakeUintegerChecker<uint32_t> ())
256 .AddAttribute (
"HarqEnabled",
257 "Activate/Deactivate the HARQ [by default is active].",
260 MakeBooleanChecker ())
261 .AddAttribute (
"UlGrantMcs",
262 "The MCS of the UL grant, must be [0..15] (default 0)",
265 MakeUintegerChecker<uint8_t> ())
320 dlHarqPrcStatus.resize (8,0);
323 dlHarqProcessesTimer.resize (8,0);
326 dlHarqdci.resize (8);
329 dlHarqRlcPdu.resize (2);
330 dlHarqRlcPdu.at (0).resize (8);
331 dlHarqRlcPdu.at (1).resize (8);
335 ulHarqPrcStatus.resize (8,0);
338 ulHarqdci.resize (8);
353 std::set <uint16_t>::iterator it;
378 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator it =
m_rlcBufferReq.begin ();
379 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator temp;
414 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator it =
m_rlcBufferReq.begin ();
415 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator temp;
418 if ((*it).first.m_rnti == params.
m_rnti)
444 std::map <LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator it;
452 m_rlcBufferReq.insert (std::pair <LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters> (flow, params));
456 (*it).second = params;
481 for (
int i = 0; i < 4; i++)
496 std::map <LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator it;
500 if (((*it).first.m_rnti == rnti) && (((*it).second.m_rlcTransmissionQueueSize > 0)
501 || ((*it).second.m_rlcRetransmissionQueueSize > 0)
502 || ((*it).second.m_rlcStatusPduSize > 0) ))
506 if ((*it).first.m_rnti > rnti)
529 NS_FATAL_ERROR (
"No Process Id Statusfound for this RNTI " << rnti);
531 uint8_t i = (*it).second;
536 while ( ((*itStat).second.at (i) != 0)&&(i != (*it).second));
537 if ((*itStat).second.at (i) == 0)
568 NS_FATAL_ERROR (
"No Process Id Statusfound for this RNTI " << rnti);
570 uint8_t i = (*it).second;
575 while ( ((*itStat).second.at (i) != 0)&&(i != (*it).second));
576 if ((*itStat).second.at (i) == 0)
579 (*itStat).second.at (i) = 1;
583 NS_FATAL_ERROR (
"No HARQ process available for RNTI " << rnti <<
" check before update with HarqProcessAvailability");
586 return ((*it).second);
595 std::map <uint16_t, DlHarqProcessesTimer_t>::iterator itTimers;
604 NS_LOG_DEBUG (
this <<
" Reset HARQ proc " << i <<
" for RNTI " << (*itTimers).first);
605 std::map <uint16_t, DlHarqProcessesStatus_t>::iterator itStat =
m_dlHarqProcessesStatus.find ((*itTimers).first);
608 NS_FATAL_ERROR (
"No Process Id Status found for this RNTI " << (*itTimers).first);
610 (*itStat).second.at (i) = 0;
611 (*itTimers).second.at (i) = 0;
615 (*itTimers).second.at (i)++;
638 std::map <uint16_t, std::vector <uint16_t> > allocationMap;
639 std::vector <bool> rbgMap;
640 uint16_t rbgAllocatedNum = 0;
641 std::set <uint16_t> rntiAllocated;
647 uint16_t rbStart = 0;
648 std::vector <struct RachListElement_s>::iterator itRach;
653 newRar.
m_rnti = (*itRach).m_rnti;
657 newRar.m_grant.m_rnti = newRar.m_rnti;
660 uint16_t tbSizeBits = 0;
667 if (tbSizeBits < (*itRach).m_estimatedSize)
672 newRar.m_grant.m_rbStart = rbStart;
673 newRar.m_grant.m_rbLen = rbLen;
674 newRar.m_grant.m_tbSize = tbSizeBits / 8;
675 newRar.m_grant.m_hopping =
false;
676 newRar.m_grant.m_tpc = 0;
677 newRar.m_grant.m_cqiRequest =
false;
678 newRar.m_grant.m_ulDelay =
false;
679 NS_LOG_INFO (
this <<
" UL grant allocated to RNTI " << (*itRach).m_rnti <<
" rbStart " << rbStart <<
" rbLen " << rbLen <<
" MCS " <<
m_ulGrantMcs <<
" tbSize " << newRar.m_grant.m_tbSize);
680 for (uint16_t i = rbStart; i < rbStart + rbLen; i++)
684 rbStart = rbStart + rbLen;
698 NS_LOG_INFO (
this <<
" Received DL-HARQ feedback");
714 std::vector <struct DlInfoListElement_s> dlInfoListUntxed;
718 if (itRnti != rntiAllocated.end ())
724 std::vector <bool> retx;
725 NS_LOG_INFO (
this <<
" Processing DLHARQ feedback");
729 retx.push_back (
false);
736 if (retx.at (0) || retx.at (1))
741 NS_LOG_INFO (
this <<
" HARQ retx RNTI " << rnti <<
" harqId " << (uint16_t)harqId);
750 if (dci.
m_rv.size () == 1)
752 rv = dci.
m_rv.at (0);
756 rv = (dci.
m_rv.at (0) > dci.
m_rv.at (1) ? dci.
m_rv.at (0) : dci.
m_rv.at (1));
762 NS_LOG_INFO (
"Maximum number of retransmissions reached -> drop process");
768 (*it).second.at (harqId) = 0;
774 for (uint16_t k = 0; k < (*itRlcPdu).second.size (); k++)
776 (*itRlcPdu).second.at (k).at (harqId).clear ();
782 std::vector <int> dciRbg;
785 for (
int j = 0; j < 32; j++)
789 dciRbg.push_back (j);
795 for (uint8_t j = 0; j < dciRbg.size (); j++)
797 if (rbgMap.at (dciRbg.at (j)) ==
true)
807 for (uint8_t j = 0; j < dciRbg.size (); j++)
809 rbgMap.at (dciRbg.at (j)) =
true;
810 NS_LOG_INFO (
"RBG " << dciRbg.at (j) <<
" assigned");
814 NS_LOG_INFO (
this <<
" Send retx in the same RBGs");
820 uint8_t rbgId = (dciRbg.at (dciRbg.size () - 1) + 1) % rbgNum;
821 uint8_t startRbg = dciRbg.at (dciRbg.size () - 1);
822 std::vector <bool> rbgMapCopy = rbgMap;
823 while ((j < dciRbg.size ())&&(startRbg != rbgId))
825 if (rbgMapCopy.at (rbgId) ==
false)
827 rbgMapCopy.at (rbgId) =
true;
828 dciRbg.at (j) = rbgId;
833 if (j == dciRbg.size ())
836 uint32_t rbgMask = 0;
837 for (uint16_t k = 0; k < dciRbg.size (); k++)
839 rbgMask = rbgMask + (0x1 << dciRbg.at (k));
844 NS_LOG_INFO (
this <<
" Move retx in RBGs " << dciRbg.size ());
849 dlInfoListUntxed.push_back (params.
m_dlInfoList.at (i));
850 NS_LOG_INFO (
this <<
" No resource for this retx -> buffer it");
858 NS_FATAL_ERROR (
"Unable to find RlcPdcList in HARQ buffer for RNTI " << rnti);
860 for (uint8_t j = 0; j < nLayers; j++)
864 if (j >= dci.
m_ndi.size ())
867 dci.
m_ndi.push_back (0);
868 dci.
m_rv.push_back (0);
869 dci.
m_mcs.push_back (0);
871 NS_LOG_INFO (
this <<
" layer " << (uint16_t)j <<
" no txed (MIMO transition)");
875 dci.
m_ndi.at (j) = 0;
877 (*itHarq).second.at (harqId).m_rv.at (j)++;
878 NS_LOG_INFO (
this <<
" layer " << (uint16_t)j <<
" RV " << (uint16_t)dci.
m_rv.at (j));
884 dci.
m_ndi.at (j) = 0;
886 dci.
m_mcs.at (j) = 0;
888 NS_LOG_INFO (
this <<
" layer " << (uint16_t)j <<
" no retx");
891 for (uint16_t k = 0; k < (*itRlcPdu).second.at (0).at (dci.
m_harqProcess).size (); k++)
893 std::vector <struct RlcPduListElement_s> rlcPduListPerLc;
894 for (uint8_t j = 0; j < nLayers; j++)
898 if (j < dci.
m_ndi.size ())
900 rlcPduListPerLc.push_back ((*itRlcPdu).second.at (j).at (dci.
m_harqProcess).at (k));
905 if (rlcPduListPerLc.size () > 0)
912 (*itHarq).second.at (harqId).
m_rv = dci.
m_rv;
917 NS_FATAL_ERROR (
"Unable to find HARQ timer for RNTI " << (uint16_t)rnti);
919 (*itHarqTimer).second.at (harqId) = 0;
921 rntiAllocated.insert (rnti);
938 for (uint16_t k = 0; k < (*itRlcPdu).second.size (); k++)
948 std::set <uint16_t>::iterator it;
950 double metricMax = 0.0;
953 std::set <uint16_t>::iterator itRnti = rntiAllocated.find ((*it));
957 if (itRnti != rntiAllocated.end ())
959 NS_LOG_DEBUG (
this <<
" RNTI discared for HARQ tx" << (uint16_t)(*it));
963 NS_LOG_DEBUG (
this <<
" RNTI discared for HARQ id" << (uint16_t)(*it));
969 std::map <uint16_t,uint8_t>::iterator itTxMode;
976 std::map <uint16_t,uint8_t>::iterator itCqi =
m_p10CqiRxed.find ((*it));
980 wbCqi = (*itCqi).second;
993 double achievableRate = 0.0;
994 for (uint8_t k = 0; k < nLayer; k++)
1000 NS_LOG_DEBUG (
this <<
" RNTI " << (*it) <<
" MCS " << (uint32_t)mcs <<
" achievableRate " << achievableRate );
1003 double metric = achievableRate;
1005 if (metric > metricMax)
1024 std::vector <uint16_t> tempMap;
1025 for (
int i = 0; i < rbgNum; i++)
1027 NS_LOG_INFO (
this <<
" ALLOCATION for RBG " << i <<
" of " << rbgNum);
1028 NS_LOG_DEBUG (
this <<
" ALLOCATION for RBG " << i <<
" of " << rbgNum);
1029 if (rbgMap.at (i) ==
false)
1031 rbgMap.at (i) =
true;
1032 tempMap.push_back (i);
1037 allocationMap.insert (std::pair <uint16_t, std::vector <uint16_t> > ((*itMax), tempMap));
1042 std::map <uint16_t, std::vector <uint16_t> >::iterator itMap = allocationMap.begin ();
1043 while (itMap != allocationMap.end ())
1047 newEl.
m_rnti = (*itMap).first;
1050 newDci.
m_rnti = (*itMap).first;
1055 uint16_t RgbPerRnti = (*itMap).second.size ();
1056 std::map <uint16_t,uint8_t>::iterator itCqi;
1058 std::map <uint16_t,uint8_t>::iterator itTxMode;
1062 NS_FATAL_ERROR (
"No Transmission Mode info on user " << (*itMap).first);
1065 for (uint8_t j = 0; j < nLayer; j++)
1069 newDci.
m_mcs.push_back (0);
1082 uint32_t rbgMask = 0;
1083 for (uint16_t k = 0; k < (*itMap).second.size (); k++)
1085 rbgMask = rbgMask + (0x1 << (*itMap).second.at (k));
1086 NS_LOG_INFO (
this <<
" Allocated RBG " << (*itMap).second.at (k));
1091 std::map <LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator itBufReq;
1094 if (((*itBufReq).first.m_rnti == (*itMap).first)
1095 && (((*itBufReq).second.m_rlcTransmissionQueueSize > 0)
1096 || ((*itBufReq).second.m_rlcRetransmissionQueueSize > 0)
1097 || ((*itBufReq).second.m_rlcStatusPduSize > 0) ))
1099 std::vector <struct RlcPduListElement_s> newRlcPduLe;
1100 for (uint8_t j = 0; j < nLayer; j++)
1106 newRlcPduLe.push_back (newRlcEl);
1114 NS_FATAL_ERROR (
"Unable to find RlcPdcList in HARQ buffer for RNTI " << (*itMap).first);
1116 (*itRlcPdu).second.at (j).at (newDci.
m_harqProcess).push_back (newRlcEl);
1121 if ((*itBufReq).first.m_rnti > (*itMap).first)
1126 for (uint8_t j = 0; j < nLayer; j++)
1128 newDci.
m_ndi.push_back (1);
1129 newDci.
m_rv.push_back (0);
1132 newEl.
m_dci = newDci;
1181 for (
unsigned int i = 0; i < params.
m_cqiList.size (); i++)
1186 std::map <uint16_t,uint8_t>::iterator it;
1187 uint16_t rnti = params.
m_cqiList.at (i).m_rnti;
1192 m_p10CqiRxed.insert ( std::pair<uint16_t, uint8_t > (rnti, params.
m_cqiList.at (i).m_wbCqi.at (0)) );
1199 (*it).second = params.
m_cqiList.at (i).m_wbCqi.at (0);
1201 std::map <uint16_t,uint32_t>::iterator itTimers;
1209 std::map <uint16_t,SbMeasResult_s>::iterator it;
1210 uint16_t rnti = params.
m_cqiList.at (i).m_rnti;
1215 m_a30CqiRxed.insert ( std::pair<uint16_t, SbMeasResult_s > (rnti, params.
m_cqiList.at (i).m_sbMeasResult) );
1221 (*it).second = params.
m_cqiList.at (i).m_sbMeasResult;
1222 std::map <uint16_t,uint32_t>::iterator itTimers;
1240 std::map <uint16_t, std::vector <double> >::iterator itCqi =
m_ueCqi.find (rnti);
1254 double sinr = (*itCqi).second.at (i);
1261 double estimatedSinr = sinrSum / (double)sinrNum;
1263 (*itCqi).second.at (rb) = estimatedSinr;
1264 return (estimatedSinr);
1277 std::vector <bool> rbMap;
1278 uint16_t rbAllocatedNum = 0;
1279 std::set <uint16_t> rntiAllocated;
1280 std::vector <uint16_t> rbgAllocationMap;
1291 if (rbgAllocationMap.at (i) != 0)
1293 rbMap.at (i) =
true;
1303 std::map <uint16_t, uint8_t>::iterator itProcId;
1306 (*itProcId).second = ((*itProcId).second + 1) %
HARQ_PROC_NUM;
1309 for (uint16_t i = 0; i < params.
m_ulInfoList.size (); i++)
1318 NS_LOG_ERROR (
"No info find in HARQ buffer for UE (might change eNB) " << rnti);
1321 NS_LOG_INFO (
this <<
" UL-HARQ retx RNTI " << rnti <<
" harqId " << (uint16_t)harqId <<
" i " << i <<
" size " << params.
m_ulInfoList.size ());
1325 NS_LOG_ERROR (
"No info find in HARQ buffer for UE (might change eNB) " << rnti);
1332 NS_LOG_ERROR (
"No info find in HARQ buffer for UE (might change eNB) " << rnti);
1334 if ((*itStat).second.at (harqId) >= 3)
1336 NS_LOG_INFO (
"Max number of retransmissions reached (UL)-> drop process");
1342 if (rbMap.at (j) ==
true)
1353 rbMap.at (j) =
true;
1354 rbgAllocationMap.at (j) = dci.
m_rnti;
1362 NS_LOG_INFO (
"Cannot allocate retx due to RACH allocations for UE " << rnti);
1367 (*itStat).second.at ((*itProcId).second) = (*itStat).second.at (harqId) + 1;
1368 (*itStat).second.at (harqId) = 0;
1369 (*itHarq).second.at ((*itProcId).second) = dci;
1371 rntiAllocated.insert (dci.
m_rnti);
1380 std::map <uint16_t,uint32_t>::iterator it;
1385 std::set <uint16_t>::iterator itRnti = rntiAllocated.find ((*it).first);
1387 if (((*it).second > 0)&&(itRnti == rntiAllocated.end ()))
1410 int rbAllocated = 0;
1433 std::set <uint16_t>::iterator itRnti = rntiAllocated.find ((*it).first);
1434 if ((itRnti != rntiAllocated.end ())||((*it).second == 0))
1458 uldci.
m_rnti = (*it).first;
1460 bool allocated =
false;
1461 NS_LOG_INFO (
this <<
" RB Allocated " << rbAllocated <<
" rbPerFlow " << rbPerFlow);
1466 for (uint16_t j = rbAllocated; j < rbAllocated + rbPerFlow; j++)
1468 if (rbMap.at (j) ==
true)
1478 for (uint16_t j = rbAllocated; j < rbAllocated + rbPerFlow; j++)
1480 rbMap.at (j) =
true;
1482 rbgAllocationMap.at (j) = (*it).first;
1484 rbAllocated += rbPerFlow;
1515 std::map <uint16_t, std::vector <double> >::iterator itCqi =
m_ueCqi.find ((*it).first);
1525 double minSinr = (*itCqi).second.at (uldci.
m_rbStart);
1532 double sinr = (*itCqi).second.at (i);
1537 if ((*itCqi).second.at (i) < minSinr)
1539 minSinr = (*itCqi).second.at (i);
1544 double s = log2 ( 1 + (
1545 pow (10, minSinr / 10 ) /
1546 ( (-log (5.0 * 0.00005 )) / 1.5) ));
1580 std::map <uint16_t, uint8_t>::iterator itProcId;
1586 harqId = (*itProcId).second;
1592 (*itDci).second.at (harqId) = uldci;
1595 NS_LOG_INFO (
this <<
" UE Allocation RNTI " << (*it).first <<
" startPRB " << (uint32_t)uldci.
m_rbStart <<
" nPRB " << (uint32_t)uldci.
m_rbLen <<
" CQI " << cqi <<
" MCS " << (uint32_t)uldci.
m_mcs <<
" TBsize " << uldci.
m_tbSize <<
" RbAlloc " << rbAllocated <<
" harqId " << (uint16_t)harqId);
1639 std::map <uint16_t,uint32_t>::iterator it;
1641 for (
unsigned int i = 0; i < params.
m_macCeList.size (); i++)
1652 uint32_t buffer = 0;
1653 for (uint8_t lcg = 0; lcg < 4; ++lcg)
1655 uint8_t bsrId = params.
m_macCeList.at (i).m_macCeValue.m_bufferStatus.at (lcg);
1660 NS_LOG_LOGIC (
this <<
"RNTI=" << rnti <<
" buffer=" << buffer);
1665 m_ceBsrRxed.insert ( std::pair<uint16_t, uint32_t > (rnti, buffer));
1670 (*it).second = buffer;
1713 std::map <uint16_t, std::vector <uint16_t> >::iterator itMap;
1714 std::map <uint16_t, std::vector <double> >::iterator itCqi;
1715 NS_LOG_DEBUG (
this <<
" Collect PUSCH CQIs of Frame no. " << (params.
m_sfnSf >> 4) <<
" subframe no. " << (0xF & params.
m_sfnSf));
1721 for (uint32_t i = 0; i < (*itMap).second.size (); i++)
1725 itCqi =
m_ueCqi.find ((*itMap).second.at (i));
1729 std::vector <double> newCqi;
1734 newCqi.push_back (sinr);
1743 m_ueCqi.insert (std::pair <uint16_t, std::vector <double> > ((*itMap).second.at (i), newCqi));
1750 (*itCqi).second.at (i) = sinr;
1751 NS_LOG_DEBUG (
this <<
" RNTI " << (*itMap).second.at (i) <<
" RB " << i <<
" SINR " << sinr);
1753 std::map <uint16_t, uint32_t>::iterator itTimers;
1774 rnti = vsp->GetRnti ();
1777 std::map <uint16_t, std::vector <double> >::iterator itCqi;
1782 std::vector <double> newCqi;
1786 newCqi.push_back (sinr);
1787 NS_LOG_INFO (
this <<
" RNTI " << rnti <<
" new SRS-CQI for RB " << j <<
" value " << sinr);
1790 m_ueCqi.insert (std::pair <uint16_t, std::vector <double> > (rnti, newCqi));
1800 (*itCqi).second.at (j) = sinr;
1801 NS_LOG_INFO (
this <<
" RNTI " << rnti <<
" update SRS-CQI for RB " << j <<
" value " << sinr);
1804 std::map <uint16_t, uint32_t>::iterator itTimers;
1817 NS_FATAL_ERROR (
"TdMtFfMacScheduler supports only PUSCH and SRS UL-CQIs");
1830 std::map <uint16_t,uint32_t>::iterator itP10 =
m_p10CqiTimers.begin ();
1834 if ((*itP10).second == 0)
1837 std::map <uint16_t,uint8_t>::iterator itMap =
m_p10CqiRxed.find ((*itP10).first);
1839 NS_LOG_INFO (
this <<
" P10-CQI expired for user " << (*itP10).first);
1841 std::map <uint16_t,uint32_t>::iterator temp = itP10;
1853 std::map <uint16_t,uint32_t>::iterator itA30 =
m_a30CqiTimers.begin ();
1857 if ((*itA30).second == 0)
1860 std::map <uint16_t,SbMeasResult_s>::iterator itMap =
m_a30CqiRxed.find ((*itA30).first);
1862 NS_LOG_INFO (
this <<
" A30-CQI expired for user " << (*itA30).first);
1864 std::map <uint16_t,uint32_t>::iterator temp = itA30;
1883 std::map <uint16_t,uint32_t>::iterator itUl =
m_ueCqiTimers.begin ();
1887 if ((*itUl).second == 0)
1890 std::map <uint16_t, std::vector <double> >::iterator itMap =
m_ueCqi.find ((*itUl).first);
1891 NS_ASSERT_MSG (itMap !=
m_ueCqi.end (),
" Does not find CQI report for user " << (*itUl).first);
1892 NS_LOG_INFO (
this <<
" UL-CQI exired for user " << (*itUl).first);
1893 (*itMap).second.clear ();
1895 std::map <uint16_t,uint32_t>::iterator temp = itUl;
1912 std::map<LteFlowId_t, FfMacSchedSapProvider::SchedDlRlcBufferReqParameters>::iterator it;
1917 NS_LOG_INFO (
this <<
" UE " << rnti <<
" LC " << (uint16_t)lcid <<
" txqueue " << (*it).second.m_rlcTransmissionQueueSize <<
" retxqueue " << (*it).second.m_rlcRetransmissionQueueSize <<
" status " << (*it).second.m_rlcStatusPduSize <<
" decrease " << size);
1920 if (((*it).second.m_rlcStatusPduSize > 0) && (size >= (*it).second.m_rlcStatusPduSize))
1922 (*it).second.m_rlcStatusPduSize = 0;
1924 else if (((*it).second.m_rlcRetransmissionQueueSize > 0) && (size >= (*it).second.m_rlcRetransmissionQueueSize))
1926 (*it).second.m_rlcRetransmissionQueueSize = 0;
1928 else if ((*it).second.m_rlcTransmissionQueueSize > 0)
1931 if ((*it).second.m_rlcTransmissionQueueSize <= size)
1933 (*it).second.m_rlcTransmissionQueueSize = 0;
1938 (*it).second.m_rlcTransmissionQueueSize -= size;
1944 NS_LOG_ERROR (
this <<
" Does not find DL RLC Buffer Report of UE " << rnti);
1953 std::map <uint16_t,uint32_t>::iterator it =
m_ceBsrRxed.find (rnti);
1956 NS_LOG_INFO (
this <<
" UE " << rnti <<
" size " << size <<
" BSR " << (*it).second);
1957 if ((*it).second >= size)
1959 (*it).second -= size;
1968 NS_LOG_ERROR (
this <<
" Does not find BSR report info of UE " << rnti);
1976 NS_LOG_FUNCTION (
this <<
" RNTI " << rnti <<
" txMode " << (uint16_t)txMode);