- 04 Oct, 2024 1 commit
-
-
Jaroslava Fiedlerova authored
-
- 03 Oct, 2024 2 commits
-
-
Robert Schmidt authored
Integration: `2024.w40` Closes #756 and #849 See merge request oai/openairinterface5g!3014 * !2886 (doc): Added a new doc on hardware requirements * !2955 dockerized clang-format error detection tool * !3005 Fix symbol size in nr_dlsch_mmse * !2930 SRS tx power * SA-B200-Module-SABOX pipeline: improve radio * SA-AW2S-CN5G: accept 5% ping packet loss * !3003 Resolve "SEGFAULT in L1_rx_thread" - CI * !3016 fix tests for log2_approx and log2_approx64 * patch to move RFsim-4G to cacofonix
-
Robert Schmidt authored
-
- 02 Oct, 2024 10 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
andrewse authored
It can happen that L1 gives us a TB that we interpret as receiving UL MAC TB with LCID "UL_SCH_LCID_CCCH1". This might or might not be correct, but currently, we observe segfaults when trying to encode the cellgroup in send_initial_ul_rrc_message() (encode_cellGroupConfig()). This fix prevents a segfault by not delivering a MAC SDU to RLC if CCCH is already present. Note that in some cases, this could still happen, e.g. Resume Request. However, we don't support this message, so ignore it for the moment. This fix enables a gNB to operate continuously for extended periods (days), which is essential for real deployment scenarios. Closes: #756
-
Thomas Schlichter authored
-
Thomas Schlichter authored
The test was actually never executed correctly (unsigned -10 is never <= 10), and log2_approx64_ref() was not accurate enough. Therefore replace it by directly comparing one value above and one value below each rounding boundary.
-
Thomas Schlichter authored
To skip the test, we use the gtest command line parameter "--gtest_filter" to filter out the unwanted test. This parameter is described as follows: --gtest_filter=POSITIVE_PATTERNS[-NEGATIVE_PATTERNS] Run only the tests whose name matches one of the positive patterns but none of the negative patterns. '?' matches any single character; '*' matches any substring; ':' separates two patterns.
-
Robert Schmidt authored
In this pipeline, we frequently see losses of a single packet; we did not find the true reason yet. Accept 5% losses, assuming that serious packet loss would be catched by (1) higher ping losses (2) iperf would be affected.
-
Robert Schmidt authored
-
- 01 Oct, 2024 9 commits
-
-
Jaroslava Fiedlerova authored
-
Jaroslava Fiedlerova authored
-
Jaroslava Fiedlerova authored
-
Jaroslava Fiedlerova authored
-
Bartosz Podrygajlo authored
Reset h_b_f_c (SRS power control adjustment state) when SRS-ResourceSet p0 or alpha is provided by higher layers, accroding to 38.213 7.3.1.
-
Bartosz Podrygajlo authored
Move h_b_f_c (or SRS power control adjustment state) to UL BWP structure. This is a per bwp parameter so it makes sense to make its lifetime the same as BWP, even if we dont support >1 UL BWPs.
-
Bartosz Podrygajlo authored
-
Robert Schmidt authored
the create_workspace.sh script checks if a branch should be merged into what we are trying to checkount (i.e., typically develop into feature-branch). The problem is that it uses a short-hand for an if branch. [ -n "${merge}"] && git merge... If we don't request a merge, [ -n XX ] will evalute to 1, and not do the git merge. Since it's the last command in the script, this makes the script return 1 (failure), when it actually succeeded. Add exit 0 to ensure we return 0 after successful end of the script. If there is a failure, the script will terminate early. It can be tested by e.g., giving a wrong commit ID. Reviewed-by: Jaroslava Fiedlerova <Jaroslava.Fiedlerova@openairinterface.org>
-
Robert Schmidt authored
Integration: `2024.w39` Closes #846 See merge request oai/openairinterface5g!2990 * !2718 Added Jenkins job for Colosseum testing integration * !2901 Fix log2_approx * !2983 fix(docker): making tini download platform specific to support ARM64 native builds * !2919 Add E2 SM in the target dockerfiles * !2981 NR gNB fix PMI report evaluation * !2979 NR-UE: Merging different UE NR SLOT FEP procedures into one. * !2899 SIB19 initialization and scheduling on gNB * !2953 Remove unnecessary c includes * !2926 Fix SRS FAPI at gNB * !2987 fix for variable power in PDSCH REs in case of 25 PRBs Bandwidth * !2993 remove DRX from UE capabilities: not supported yet * !2711 NR UE UL time alignment handling improvements * !2995 some small fixes for 5G NR * !2992 cleaner faster nr_pdcch_demapping_deinterleaving() inner loop * !2986 NR PDCP ticks for F1 split * !2982 CI framework cleanup
-
- 30 Sep, 2024 7 commits
-
-
Jaroslava Fiedlerova authored
-
arora authored
Signed-off-by: arora <sagar.arora@openairinterface.org>
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Jaroslava Fiedlerova authored
-
francescomani authored
-
- 29 Sep, 2024 4 commits
-
-
Robert Schmidt authored
Merge remote-tracking branch 'origin/nr_pdcch_demapping_deinterleaving-improve' into integration_2024_w39
-
Robert Schmidt authored
-
francescomani authored
-
Xin Zhe Khooi authored
Currently, NR PDCP ticks are active only with monolithic gNB, triggered by the MAC scheduler in gNB_scheduler.c. In F1 split mode, as there is no MAC, there’s no source to advance the NR PDCP timer via "nr_pdcp_wakeup_timer_thread()". This commit introduces a dedicated thread for NR PDCP ticks in gNB-CU and CU-UP mode. Without it, packet losses at the F1 uplink would cause indefinite buffering, as t-Reordering won't expire due to the lack of NR PDCP timer ticks.
-
- 28 Sep, 2024 7 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
Use a script, which can be tested independently of CI code (by running it on the host on which it will be used), and print the directory that has been prepared in the HTML. Also, in the description, use the infinitive/imperative(?) of the verb to harmonize with other steps.
-
Robert Schmidt authored
A lot of CI code is python mixed with bash, e.g., ssh = getConnection(host) ssh.run('ls') ssh.run('echo') At least some of this CI code would benefit if it was written in a simple bash script, returning error codes and potentially other information either through stdout/stderr or files, to the calling Python code: ssh = runScript(host, script) # script does: ls; echo This commit introduces the possibility to run entire scripts. The idea is that the executor has a script (on localhost), which is either executed locally or on a remote host. For the remote host, the script is not copied but piped into a remotely executed bash. In both cases, output is either returned like the Cmd.run() function with returncode and mixed stdout/stderr, or optionally redirected into a file on the (remote) host, which can be treated further by the Python code in later steps.
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
This reimplements the CI deployment functions, and makes them a bit more robust. Concretely: - Introduce a generic "deployment tag" option that can be used to override the tag to use for specific images. By default, it is the current "branch-commitID[0:8]" tag name (requires the change from function ImageTagToUse() to CreateTag(), impacting also pull/push image functions) - Avoid sed for image names, and use an .env file that docker-compose picks up automatically; the deployment analyzes a potentially existing .env file and updates instead of simply overriding. For instance, some pipelines might use -asan images for the gNB and "normal" (non-asan) images for UE, and a simple overwriting might make the -asan image name tag disappear for the gNB, resulting in deployment failures). Finally, undeployment removes the .env file, so that there are no modifications in the repository after undeployment. - Redo the previous behavior of autodetecting asan, and use that (the current function always uses asan, no matter what) - Remove deployKind/displayedNewTags globals, as they are not necessary - Make the usedImage output in HTML slimmer - On undeployment, print service names next to undeploy analysis, and return success/failure. - Make the functions generally less verbose and easier to read Note that as of and only in this commit, deployment does not work, as all the YAML files have not been updated to work with this updated version. The next commit adds tests for the new deployment, and updates one YAML file (also being used in the tests). The follow-up commit then modifies all YAML files.
-