An error occurred fetching the project authors.
- 04 Jun, 2020 1 commit
-
-
laurent authored
-
- 20 May, 2020 1 commit
-
-
laurent authored
-
- 15 May, 2020 1 commit
-
-
Raphael Defosseux authored
Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- 14 May, 2020 2 commits
-
-
Thomas Schlichter authored
-
Ahmed Hussein authored
-
- 09 May, 2020 1 commit
-
-
Cedric Roux authored
The following was failing: ./build_oai --UE --musim Not sure this fix is correct, but it seems consistent with the rest of platform_constants.h.
-
- 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?
-
- 06 May, 2020 1 commit
-
-
Ahmed Hussein authored
-
- 03 May, 2020 1 commit
-
-
laurent authored
-
- 29 Apr, 2020 1 commit
-
-
Raphael Defosseux authored
Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- 28 Apr, 2020 1 commit
-
-
laurent authored
-
- 20 Apr, 2020 1 commit
-
-
Cedric Roux authored
-
- 19 Apr, 2020 1 commit
-
-
Cedric Roux authored
-
- 17 Apr, 2020 14 commits
-
-
Javier Morgade authored
-
laurent authored
-
Cedric Roux authored
All previous commits for rlc v2 are proably not functional or even compiling.
-
Cedric Roux authored
Not sure if the problem is in the MAC layer or in the RLC v2 layer. Maybe the buffer status reporting in RLC v2 is not good. Let's remove two AssertFatal in the MAC for the time being.
-
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
The UE code to compute BSR is too complex, has to be reworked/simplified. This commit just removes the assert, does not solve anything.
-
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
-
Cedric Roux authored
-
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.
-
Thomas Schlichter authored
-
- 16 Apr, 2020 6 commits
-
-
Ahmed Hussein authored
- if L_ptrs is >= number of pusch symbols, then no ptrs will be scheduled
-
Ahmed Hussein authored
-
Ahmed Hussein authored
-
Ahmed Hussein authored
-
Ahmed Hussein authored
-
laurent authored
-
- 15 Apr, 2020 1 commit
-
-
matzakos authored
-
- 14 Apr, 2020 3 commits
-
-
laurent authored
-
laurent authored
-
Ahmed Hussein authored
-
- 09 Apr, 2020 3 commits
-
-
Robert Schmidt authored
Instead of looping over UEs and all DL config Req/HI DCI0, loop first over all DL config Req/HI DCI0, and for each, match UE. Lowers CPU traffic for high traffic situations.
-
Robert Schmidt authored
-
Robert Schmidt authored
-