- 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?
-
- 30 Apr, 2020 2 commits
-
-
Raphael Defosseux authored
Develop Integration Branch -- 2020 week 17 See merge request oai/openairinterface5g!809
-
Raphael Defosseux authored
-
- 29 Apr, 2020 5 commits
-
-
Raphael Defosseux authored
-
Cedric Roux authored
-
laurent authored
-
Raphael Defosseux authored
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- 28 Apr, 2020 4 commits
- 23 Apr, 2020 10 commits
-
-
Raphael Defosseux authored
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Javier Morgade authored
Now is aligned with RMSIMULATOR config file (this should solve CI issues with monolithic tests)
-
Raphael Defosseux authored
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
-
Raphael Defosseux authored
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
Merge remote-tracking branch 'origin/develop_integration_2020_w15' into develop_integration_2020_w17
-
- 22 Apr, 2020 3 commits
-
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- 21 Apr, 2020 7 commits
-
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- 20 Apr, 2020 1 commit
-
-
Cedric Roux authored
-
- 19 Apr, 2020 1 commit
-
-
Cedric Roux authored
-
- 17 Apr, 2020 6 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.
-