An error occurred fetching the project authors.
- 23 Dec, 2020 1 commit
-
-
Laurent authored
-
- 01 Dec, 2020 1 commit
-
-
cig authored
- enabled procedures that were already called for phy-test mode - enabled setup of DRB for the current C-RNTI - enhanced information, debugging and warning logging at MAC/RLC/PDCP level
-
- 26 Nov, 2020 2 commits
-
-
Cedric Roux authored
-
Cedric Roux authored
RLC has timers. We need to keep track of time. We chose to not use realtime but 'processing time'. That is we send a tick to RLC for every subframe when it is processed by the softmodem. Before this commit we used to increase time in the function mac_rlc_status_ind which may not be called every subframe (especially in TDD mode). So we need another way to keep track of time. We introduce rlc_tick() and call it in eNB_dlsch_ulsch_scheduler, which is called every subframe, both in FDD and TDD. We also call rlc_tick() in the function ru_thread_synch() because pdcp_run() and rrc_rx_tx() are called there too. It may not be the best solution. To be revised if needed. Note: the UE has not been touched. Some modification is needed for the UE too, most probably.
-
- 07 May, 2020 1 commit
-
-
Cedric Roux authored
Minor fixes, doesn't change anything. Not sure these are 'bugs' either, but let's be polite with coverity scan... One thing was not changed. Coverity scan says: *** CID 357991: Memory - illegal accesses (USE_AFTER_FREE) /home/carabe/raphael/openairinterface5g/openair2/LAYER2/rlc_v2/rlc_entity_am.c: 507 in tx_list_remove_sn() 501 } else { 502 prev = cur; 503 cur = cur->next; 504 } 505 } 506 >>> CID 357991: Memory - illegal accesses (USE_AFTER_FREE) >>> Using freed pointer "head.next". 507 return head.next; 508 } 509 510 void cleanup_sdu_list(rlc_entity_am_t *entity) 511 { 512 rlc_sdu_t head; But as far as I understand, there is no problem. We don't access head.next at all if it has been freed. Or is there some aliasing going on there (pointer aliasing)? I doubt it. False positive?
-
- 20 Apr, 2020 1 commit
-
-
Cedric Roux authored
-
- 19 Apr, 2020 1 commit
-
-
Cedric Roux authored
-
- 17 Apr, 2020 7 commits
-
-
Cedric Roux authored
All previous commits for rlc v2 are proably not functional or even compiling.
-
Cedric Roux authored
Not very clean, but will do the job for the time being.
-
Cedric Roux authored
Limitation: this fix only works if there is only one eNB, because we force module_id = 0 in the function deliver_sdu where (as the code is today) we have no way to know which module_id is concerned. More generally, the rlc v2 does not work with more than 1 eNB.
-
Cedric Roux authored
-
Cedric Roux authored
The old method was wrong. The new method is better, but not accurate, especially when the TX buffer contains SDU of size > 2047 bytes. Plus it's probably too slow. To be refined at some point.
-
Cedric Roux authored
simply ignore the error maybe not the best solution
-
Cedric Roux authored
This commit introduces an alternative RLC implementation based on 36.322 version 8. AM and UM done, TM not done. See openair2/LAYER2/rlc_v2/TODO for missing parts.
-
- 15 Apr, 2020 1 commit
-
-
matzakos authored
-
- 06 Apr, 2020 1 commit
-
-
Robert Schmidt authored
Previously, the various rlc_*_ind() functions had a parameter to enable the MAC to specify the max TB size that a subsequent call to the corresponding rlc_*_req() (!) function would return. This patch removes this parameter from the rlc_*_ind() functions and makes the parameter working that is already in the rlc_*_req() functions.
-
- 06 Feb, 2020 1 commit
-
-
matzakos authored
-
- 04 Feb, 2020 1 commit
-
-
frtabu authored
-
- 22 Jan, 2020 1 commit
-
-
matzakos authored
nr-ip noS1 uplink: Uplink IP traffic successfully received at the IP TUN interface of the gNB now. Logs cleanup.
-
- 20 Jan, 2020 1 commit
-
-
matzakos authored
nr-ip noS1 uplink integration (testing with RFSIMULATOR only): Uplink IP packets received at the gNB and reaching at pdcp layer. Asserion error at pdcp_fifo_flush_sdus when trying to write on the nas socket
-
- 15 Jan, 2020 1 commit
-
-
Raphael Defosseux authored
Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- 10 Jan, 2020 1 commit
-
-
Raphael Defosseux authored
Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- 19 Dec, 2019 1 commit
-
-
Raymond Knopp authored
-
- 16 Dec, 2019 3 commits
-
-
frtabu authored
-
Cedric Roux authored
-
Cedric Roux authored
Fix also value passed to buffer_status in mac_rlc_status_ind to be aligned with 38.321 (instead of 36.321).
-
- 10 Dec, 2019 1 commit
-
-
Cedric Roux authored
Initial implementation. nr_rlc/nr_rlc_oai_api.c will need some clean rewrite at some point. More testing is also needed.
-