removed obsolete LOG_ERROR in several LTE schedulers

This commit is contained in:
Nicola Baldo
2013-05-22 13:30:12 +02:00
parent 448c32aeec
commit 1a8c217c9a
9 changed files with 0 additions and 30 deletions

View File

@@ -371,10 +371,6 @@ FdBetFfMacScheduler::DoCschedLcConfigReq (const struct FfMacCschedSapProvider::C
flowStatsUl.lastAveragedThroughput = 1;
m_flowStatsUl.insert (std::pair<uint16_t, fdbetsFlowPerf_t> (params.m_rnti, flowStatsUl));
}
else
{
NS_LOG_ERROR ("RNTI already exists");
}
}
return;

View File

@@ -360,10 +360,6 @@ FdMtFfMacScheduler::DoCschedLcConfigReq (const struct FfMacCschedSapProvider::Cs
m_flowStatsDl.insert (params.m_rnti);
m_flowStatsUl.insert (params.m_rnti);
}
else
{
NS_LOG_ERROR ("RNTI already exists");
}
}
return;

View File

@@ -409,8 +409,6 @@ FdTbfqFfMacScheduler::DoCschedLcConfigReq (const struct FfMacCschedSapProvider::
}
else
{
//NS_LOG_ERROR ("RNTI already exists");
// update MBR and GBR from UeManager::SetupDataRadioBearer ()
uint64_t mbrDlInBytes = params.m_logicalChannelConfigList.at (i).m_eRabMaximulBitrateDl / 8; // byte/s
uint64_t mbrUlInBytes = params.m_logicalChannelConfigList.at (i).m_eRabMaximulBitrateUl / 8; // byte/s

View File

@@ -370,10 +370,6 @@ PfFfMacScheduler::DoCschedLcConfigReq (const struct FfMacCschedSapProvider::Csch
flowStatsUl.lastAveragedThroughput = 1;
m_flowStatsUl.insert (std::pair<uint16_t, pfsFlowPerf_t> (params.m_rnti, flowStatsUl));
}
else
{
NS_LOG_ERROR ("RNTI already exists");
}
}
return;

View File

@@ -393,8 +393,6 @@ PssFfMacScheduler::DoCschedLcConfigReq (const struct FfMacCschedSapProvider::Csc
}
else
{
//NS_LOG_ERROR ("RNTI already exists");
// update GBR from UeManager::SetupDataRadioBearer ()
double tbrDlInBytes = params.m_logicalChannelConfigList.at (i).m_eRabGuaranteedBitrateDl / 8; // byte/s
double tbrUlInBytes = params.m_logicalChannelConfigList.at (i).m_eRabGuaranteedBitrateUl / 8; // byte/s

View File

@@ -371,10 +371,6 @@ TdBetFfMacScheduler::DoCschedLcConfigReq (const struct FfMacCschedSapProvider::C
flowStatsUl.lastAveragedThroughput = 1;
m_flowStatsUl.insert (std::pair<uint16_t, tdbetsFlowPerf_t> (params.m_rnti, flowStatsUl));
}
else
{
NS_LOG_ERROR ("RNTI already exists");
}
}
return;

View File

@@ -360,10 +360,6 @@ TdMtFfMacScheduler::DoCschedLcConfigReq (const struct FfMacCschedSapProvider::Cs
m_flowStatsDl.insert (params.m_rnti);
m_flowStatsUl.insert (params.m_rnti);
}
else
{
NS_LOG_ERROR ("RNTI already exists");
}
}
return;

View File

@@ -409,8 +409,6 @@ TdTbfqFfMacScheduler::DoCschedLcConfigReq (const struct FfMacCschedSapProvider::
}
else
{
//NS_LOG_ERROR ("RNTI already exists");
// update MBR and GBR from UeManager::SetupDataRadioBearer ()
uint64_t mbrDlInBytes = params.m_logicalChannelConfigList.at (i).m_eRabMaximulBitrateDl / 8; // byte/s
uint64_t mbrUlInBytes = params.m_logicalChannelConfigList.at (i).m_eRabMaximulBitrateUl / 8; // byte/s

View File

@@ -360,10 +360,6 @@ TtaFfMacScheduler::DoCschedLcConfigReq (const struct FfMacCschedSapProvider::Csc
m_flowStatsDl.insert (params.m_rnti);
m_flowStatsUl.insert (params.m_rnti);
}
else
{
NS_LOG_ERROR ("RNTI already exists");
}
}
return;