mac: fix handling of the logical channel group priority in the srsue

master
Francisco Paisana 1 year ago committed by Carlos Alberto Ruiz Naranjo
parent c845cbcbd5
commit 8ae0b9bc05

@ -247,13 +247,14 @@ int proc_bsr_nr::setup_lcid(uint32_t lcid, uint32_t new_lcg, uint32_t priority)
std::lock_guard<std::mutex> lock(mutex); std::lock_guard<std::mutex> lock(mutex);
// Check that the new priority doesn't not already exist // Check that the new priority doesn't not already exist
if (lcg_priorities.find(priority) != lcg_priorities.end()) { auto it = lcg_priorities.find(priority);
if (it != lcg_priorities.end() and *it != new_lcg) {
logger.error( logger.error(
"BSR: Invalid config. Priority=%d already configured for lcg=%d", priority, lcg_priorities.at(priority)); "BSR: Invalid config. Priority=%d already configured for lcg=%d", priority, *it);
return SRSRAN_ERROR; return SRSRAN_ERROR;
} }
lcg_priorities[priority] = new_lcg; *it = new_lcg;
return SRSRAN_SUCCESS; return SRSRAN_SUCCESS;
} }

Loading…
Cancel
Save