Džiugas Baltrūnas
Džiugas Baltrūnas
Apologies for not attaching the full logs previously @andrepuschmann , here are the full srsue and gnb logs [gnb-ue-logs.zip](https://github.com/srsran/srsRAN_4G/files/12474714/gnb-ue-logs.zip). Could you advice which inactivity timer I should be increasing? A...
I can confirm that at least the CU/CP inactivity timer (e.g., `gnb cu_cp --inactivity_timer 7200` and seen in E1AP Bearer Context Setup Request as UE-Inactivity-Timer IE) does not seem to...
gnb: - configuration: [gnb.conf.zip](https://github.com/srsran/srsRAN_4G/files/12482889/gnb.conf.zip) - command line: `gnb -c gnb.yaml -c gnb-qos.yaml --gnb_id 1 amf --addr 172.42.42.20 --bind_addr 172.42.42.10 ru_sdr --device_args fail_on_disconnect=true,tx_port=tcp://*:1000,rx_port=tcp://127.0.0.1:1001,id=gnb,base_srate=11.52e6 cell_cfg --plmn 00101 --all_level debug cu_cp --inactivity_timer 7200`...
Thanks @frankist for your reply. I did not pay attention to the fact that there has been a significant number of commits to the srsRAN_Project repo recently. I recompiled gnb...
@frankist Stepping with gdb suggests that line 157 is reached, but `pdsch_alloc.allocate_dl_grant()` function is returning `false`: ``` (gdb) bt #0 alloc_dl_ue (u=..., res_grid=..., pdsch_alloc=..., is_retx=true, logger=...) at /home/dziugas/git/srsRAN_Project/lib/scheduler/policy/scheduler_time_rr.cpp:156 #1 0x0000aaaaab7a81e8...
Here is why `pdsch_alloc.allocate_dl_grant()` returns `false`: ``` (gdb) s alloc_dl_ue (u=..., res_grid=..., pdsch_alloc=..., is_retx=true, logger=...) at /home/dziugas/git/srsRAN_Project/lib/scheduler/policy/scheduler_time_rr.cpp:157 157 const bool res_allocated = pdsch_alloc.allocate_dl_grant(ue_pdsch_grant{&u, (gdb) s srsran::ue_cell_grid_allocator::allocate_dl_grant (this=0xffffc8005748, grant=...) at /home/dziugas/git/srsRAN_Project/lib/scheduler/ue_scheduling/ue_cell_grid_allocator.cpp:51...
I can also confirm that having the diff applied No available HARQs errors is not seen anymore. Thanks for the fix.