ul_harq: reduce log level for new_grant_ul() if RNTI isn't found

this avoid logging a warning on UE shutdown if the MAC is already reset
but one of the PHY workers still decodes an UL grant for the old RTNI

21:30:29.254844 [RRC ] [I] Going RRC_IDLE
21:30:29.254848 [RRC ] [I] Proc "Go Idle" - Left connected state
21:30:29.259499 [PHY0] [I] [ 3865] Finished setting new PHY configuration cc_idx=0
21:30:29.259512 [PHY0] [I] [ 3865] Setting new PHY configuration cc_idx=0...
21:30:29.264190 [PHY0] [I] [ 3867] Finished setting new PHY configuration cc_idx=0
21:30:29.275036 [PHY1] [I] [ 3872] PHICH: hi=1, corr=1.0, I_lowest=1, n_dmrs=0, I_phich=0
21:30:29.275050 [MAC ] [W] [ 3872] Received grant for unknown rnti=0x46
This commit is contained in:
Andre Puschmann 2020-10-06 17:16:19 +02:00
parent 362461329a
commit 5e95fd4a43
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ void ul_harq_entity::new_grant_ul(mac_interface_phy_lte::mac_grant_ul_t grant,
Info("Not implemented\n");
}
} else {
Warning("Received grant for unknown rnti=0x%x\n", grant.rnti);
Info("Received grant for unknown rnti=0x%x\n", grant.rnti);
}
}