Commit 3fa8306e authored by Marius Tillner's avatar Marius Tillner

added if condition to U mac.demuxed-- since there were packages with 3 bytes,...

added if condition to U mac.demuxed-- since there were packages with 3 bytes, that didn't contain any data just header which lead to mismatches
parent 171653a9
...@@ -410,7 +410,7 @@ static int nr_process_mac_pdu(instance_t module_idP, ...@@ -410,7 +410,7 @@ static int nr_process_mac_pdu(instance_t module_idP,
mac_len); mac_len);
UE->mac_stats.ul.lc_bytes[rx_lcid] += mac_len; UE->mac_stats.ul.lc_bytes[rx_lcid] += mac_len;
LATSEQ_P("U mac.demuxed--rlc.decoded", "len%u::fm%u.sl%u.hqpid%u.MRbuf%u.rnti%u", mac_len, frameP, slot, harq_pid, pduP+mac_subheader_len, UE->rnti); if(mac_len > 3) { LATSEQ_P("U mac.demuxed--rlc.decoded", "len%u::fm%u.sl%u.hqpid%u.MRbuf%u.rnti%u", mac_len, frameP, slot, harq_pid, pduP+mac_subheader_len, UE->rnti); }
mac_rlc_data_ind(module_idP, mac_rlc_data_ind(module_idP,
UE->rnti, UE->rnti,
module_idP, module_idP,
......
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