Reporting +1 in buffer state from RLC AM to avoid eNB issues with 1-byte packets

This commit is contained in:
Paul Sutton 2018-01-12 14:27:22 +00:00
parent b12f500207
commit e0ad960fd7
1 changed files with 2 additions and 2 deletions

View File

@ -229,7 +229,7 @@ uint32_t rlc_am::get_total_buffer_state()
// Room needed for fixed header?
if(n_bytes > 0) {
n_bytes += 2;
n_bytes += 3;
log->debug("Buffer state - tx SDUs: %d bytes\n", n_bytes);
}
@ -285,7 +285,7 @@ uint32_t rlc_am::get_buffer_state()
// Room needed for fixed header?
if(n_bytes > 0) {
n_bytes += 2;
n_bytes += 3;
log->debug("Buffer state - tx SDUs: %d bytes\n", n_bytes);
}