Merge branch 'next' into agpl_next

This commit is contained in:
Codebot 2022-08-04 14:18:08 +00:00 committed by SRS codebot
commit ce8a3cae17
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ void ue::new_slot(slot_point pdcch_slot)
// Discount UL HARQ pending bytes to BSR
for (uint32_t pid = 0; pid < cc->harq_ent.nof_ul_harqs(); ++pid) {
if (not cc->harq_ent.ul_harq(pid).empty()) {
common_ctxt.pending_ul_bytes -= std::min(cc->harq_ent.ul_harq(pid).tbs(), common_ctxt.pending_ul_bytes);
common_ctxt.pending_ul_bytes -= std::min(cc->harq_ent.ul_harq(pid).tbs() / 8, common_ctxt.pending_ul_bytes);
if (last_sr_slot.valid() and cc->harq_ent.ul_harq(pid).harq_slot_tx() > last_sr_slot) {
last_sr_slot.clear();
}