Commit 3c3712ef authored by Robert Schmidt's avatar Robert Schmidt

Lower log level of ULSCH allocation

parent b2820420
...@@ -611,7 +611,7 @@ void pf_ul(module_id_t module_id, ...@@ -611,7 +611,7 @@ void pf_ul(module_id_t module_id,
/* Check the resource is enough for retransmission */ /* Check the resource is enough for retransmission */
while (rbStart < bwpSize && !rballoc_mask[rbStart]) rbStart++; while (rbStart < bwpSize && !rballoc_mask[rbStart]) rbStart++;
if (rbStart + sched_pusch->rbSize >= bwpSize) { if (rbStart + sched_pusch->rbSize >= bwpSize) {
LOG_W(MAC, "cannot allocate UL data for UE %d/RNTI %04x: no resources\n", LOG_D(MAC, "cannot allocate retransmission of UE %d/RNTI %04x: no resources\n",
UE_id, UE_info->rnti[UE_id]); UE_id, UE_info->rnti[UE_id]);
return; return;
} }
...@@ -668,7 +668,7 @@ void pf_ul(module_id_t module_id, ...@@ -668,7 +668,7 @@ void pf_ul(module_id_t module_id,
while (rbStart < bwpSize && !rballoc_mask[rbStart]) rbStart++; while (rbStart < bwpSize && !rballoc_mask[rbStart]) rbStart++;
if (rbStart + min_rb >= bwpSize) { if (rbStart + min_rb >= bwpSize) {
LOG_W(MAC, "cannot allocate UL data for UE %d/RNTI %04x: no resources\n", LOG_D(MAC, "cannot allocate continuous data for UE %d/RNTI %04x: no resources\n",
UE_id, UE_info->rnti[UE_id]); UE_id, UE_info->rnti[UE_id]);
return; return;
} }
...@@ -750,7 +750,7 @@ void pf_ul(module_id_t module_id, ...@@ -750,7 +750,7 @@ void pf_ul(module_id_t module_id,
while (rbStart < bwpSize && !rballoc_mask[rbStart]) rbStart++; while (rbStart < bwpSize && !rballoc_mask[rbStart]) rbStart++;
sched_pusch->rbStart = rbStart; sched_pusch->rbStart = rbStart;
if (rbStart + min_rb >= bwpSize) { if (rbStart + min_rb >= bwpSize) {
LOG_W(MAC, "cannot allocate UL data for UE %d/RNTI %04x: no resources\n", LOG_D(MAC, "cannot allocate UL data for UE %d/RNTI %04x: no resources\n",
UE_id, UE_info->rnti[UE_id]); UE_id, UE_info->rnti[UE_id]);
return; return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment