An error occurred fetching the project authors.
- 25 Jul, 2017 3 commits
-
-
Raymond.Knopp authored
-
Raymond.Knopp authored
-
Raymond Knopp authored
-
- 24 Jul, 2017 1 commit
-
-
Raymond Knopp authored
-
- 19 Jul, 2017 1 commit
-
-
Raymond Knopp authored
-
- 06 Jul, 2017 1 commit
-
-
Raymond Knopp authored
Note: this commit is work in progress. Contains initial integration of NFAPI data structures which are tested for TX path. RX path to follow.
-
- 04 Jun, 2017 2 commits
-
-
Raymond Knopp authored
-
Raymond Knopp authored
-
- 18 May, 2017 1 commit
-
-
Cedric Roux authored
those popped up thanks to previous commit
-
- 03 May, 2017 1 commit
-
-
gabrielC authored
-
- 25 Apr, 2017 1 commit
-
-
Raymond Knopp authored
-
- 24 Apr, 2017 1 commit
-
-
gabrielC authored
-
- 19 Apr, 2017 1 commit
-
-
Raymond Knopp authored
-
- 18 Apr, 2017 1 commit
-
-
Raymond Knopp authored
-
- 17 Apr, 2017 1 commit
-
-
Raymond Knopp authored
-
- 10 Apr, 2017 1 commit
-
-
Cedric Roux authored
Using "system" to call "git log" is too error-prone. In the test setup, lte-softmodem was blocked because "git log" uses a pager ("less") and the pager was waiting for the user to press enter. We could pass "--no-pager" to "git log" but then what if someone runs the softmodem out of the source tree? cmake defines PACKAGE_VERSION, we can use that instead, as is done in openair-cn.
-
- 03 Apr, 2017 1 commit
-
-
gabrielC authored
-
- 28 Mar, 2017 3 commits
-
-
Wilson Thong authored
-
Wilson Thong authored
-
Wilson W.K. Thong authored
-
- 24 Mar, 2017 8 commits
-
-
Cedric Roux authored
not sure of this one, to be checked
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
6 numbers (2 hexa digits each) separated by ':' plus ending 0 makes 18 bytes, not 6, let's put 20
-
- 23 Mar, 2017 3 commits
-
-
Cedric Roux authored
see https://gitlab.eurecom.fr/oai/openairinterface5g/issues/227 When the UE connects to the eNodeB and receives its IP address from the network, it calls system() to set it in the linux kernel world. This call is not done in a realtime thread, but in the NAS, which uses its own thread, independent of the realtime processing. In some situations this totally disrupts realtime processing. It is difficult to know precisely why that happens, but it seems that calling fork(), as system() does, in a multi-threaded program is not a good idea. (So say several people on the internet.) It is not clear why the softmodem is impacted, but it seems that fork() is really what triggers the disruption. Several tests lead to that conclusion. To fix the problem, we create a child background process very early in main() (before anything else basically). Then instead of calling system(), the main process sends the string to the background process. The background process gets the string, passes it to system() and reports the success/failure back to the main process. This solution involves a lot of system calls, but calling system() in the first place is not cheap either. As long as no realtime thread uses this mechanism, things should be fine. Time will tell.
-
Cedric Roux authored
-
Cedric Roux authored
This work was done by Bruno Mongazon.
-
- 15 Mar, 2017 1 commit
-
-
Florian Kaltenberger authored
-
- 13 Mar, 2017 2 commits
-
-
hbilel authored
-
Cedric Roux authored
-
- 08 Mar, 2017 4 commits
- 03 Mar, 2017 1 commit
-
-
Cedric Roux authored
Bug reported by Bruno Mongazon from Nokia. "Without this line, the config file parameter is not properly stored and the FH will always work with compression."
-
- 22 Feb, 2017 1 commit
-
-
hbilel authored
-