Commit 13909e4c authored by luis_pereira87's avatar luis_pereira87

Improved fix gNB downlink MAC short/long header accordingly with RLC buffer size

parent da33c853
......@@ -1101,19 +1101,21 @@ void nr_schedule_ue_spec(module_id_t module_id,
int dlsch_total_bytes = 0;
if (sched_ctrl->num_total_bytes > 0) {
tbs_size_t len = 0;
while (size > 3) {
// Check MAC header short/long format and size
// Check if data from RLC is equal or longer than 256B or not.
// Data from RLC was checked before, in function nr_store_dlsch_buffer
int header_size = sizeof(NR_MAC_SUBHEADER_SHORT);
if (sched_ctrl->num_total_bytes >= 256) {
header_size = sizeof(NR_MAC_SUBHEADER_LONG);
}
while (size > header_size) {
// Reserve space for short or long header.
// Check if data from RLC is equal or longer than 256B or not.
// Data from RLC was checked before, in function nr_store_dlsch_buffer
uint8_t *header = buf;
if (sched_ctrl->num_total_bytes >= 256) {
buf += sizeof(NR_MAC_SUBHEADER_LONG);
size -= sizeof(NR_MAC_SUBHEADER_LONG);
} else {
buf += sizeof(NR_MAC_SUBHEADER_SHORT);
size -= sizeof(NR_MAC_SUBHEADER_SHORT);
}
buf += header_size;
size -= header_size;
/* limit requested number of bytes to what preprocessor specified, or
* such that TBS is full */
......@@ -1143,7 +1145,7 @@ void nr_schedule_ue_spec(module_id_t module_id,
if (len == 0)
break;
if (sched_ctrl->num_total_bytes >= 256) {
if (header_size == sizeof(NR_MAC_SUBHEADER_LONG)) {
((NR_MAC_SUBHEADER_LONG *) header)->R = 0;
((NR_MAC_SUBHEADER_LONG *) header)->F = 1;
((NR_MAC_SUBHEADER_LONG *) header)->LCID = lcid;
......@@ -1162,13 +1164,8 @@ void nr_schedule_ue_spec(module_id_t module_id,
}
if (len == 0) {
/* RLC did not have data anymore, mark buffer as unused */
if (sched_ctrl->num_total_bytes >= 256) {
buf -= sizeof(NR_MAC_SUBHEADER_LONG);
size += sizeof(NR_MAC_SUBHEADER_LONG);
} else {
buf -= sizeof(NR_MAC_SUBHEADER_SHORT);
size += sizeof(NR_MAC_SUBHEADER_SHORT);
}
buf -= header_size;
size += header_size;
}
}
else if (get_softmodem_params()->phy_test || get_softmodem_params()->do_ra || get_softmodem_params()->sa) {
......
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