- 06 Sep, 2024 7 commits
-
-
Robert Schmidt authored
Before this bug fix, when using F1, we get this warning: Constraint validation failed: LCID: constraint failed (/home/richie/openairinterface5g/cmake_targets/ran_build/build/openair2/F1AP/MESSAGES/F1AP_LCID.c:30) This is because (1) we don't actually store the LCID, then (2) we did not put it into the F1 ASN.1 structures. Fix both, to make this warning disappear. To actually print the full error message, increase the error buffer size. Also, for the future, to avoid guessing, print ASN.1 XML when we encounter a failed constraint validation.
-
Robert Schmidt authored
-
Robert Schmidt authored
It can happen that SCTP communication is simply lost, e.g. [SCTP] SCTP_ASSOC_CHANGE to SCTP_COMM_LOST [SCTP] sctp_recvmsg (fd 104, len -1 ): Connection reset by peer:104 The previous code only handled the SHUTDOWN event, but in abnormal situations, we should also handle the connection state change and signal to RRC that the endpoint is dead, which is now implemented.
-
Robert Schmidt authored
User of the SCTP module use the assoc_id for connection identification. The previous code set the assoc_id to -1, so there is no way of telling which connection broke. Use the assoc_id instead
-
Robert Schmidt authored
-
Robert Schmidt authored
The failure mode observed here was that the CU sent a release command for a UE that the DU does not know. Given, that the outcome of the release command (no UE) is equal to the current state (no UE), from the DU point of view, we can safely ack the command.
-
Robert Schmidt authored
-
- 05 Sep, 2024 1 commit
-
-
Robert Schmidt authored
-
- 04 Sep, 2024 17 commits
-
-
Robert Schmidt authored
chore(ci): CI Infrastructure Refactoring: Streamlining Deployment function, Logging, and docker images See merge request oai/openairinterface5g!2770
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Bipin Adhikari authored
-
Bipin authored
-
Bipin authored
-
Bipin authored
-
Bipin Adhikari authored
-
Bipin Adhikari authored
-
Bipin Adhikari authored
- Introduced additional helper functions: CopyinContainerLog, GetRunningServices, CheckLogs.
-
Bipin Adhikari authored
- Introduced helper functions: GetCredentials, GetContainerName, GetImageInfo, GetContainerHealth, ReTagImages, DeployServices.
-
Bipin Adhikari authored
-
Bipin Adhikari authored
XML file changed accordingly
-
Bipin Adhikari authored
Create_Workspace is used used in XML files instead of directly being executed in DeployObject(). This can be problematic if we deploy multiple services on the same host, since a previous workspace will be deleted. Also, it removes futile git clones. There are other XML steps (CppCheckAnalysis, LicenceAndFormattingCheck, BuildImage, BuildProxy, BuildClusterImage) that implicitly called Create_Workspace. Those calls have been removed and care has been taken to insert the corresponding Create_Workspace steps in the XML.
-
Bipin Adhikari authored
It can be set using nodes and svr_node tags in xml files
-
Bipin Adhikari authored
-
Bipin Adhikari authored
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- 02 Sep, 2024 4 commits
-
-
Robert Schmidt authored
Integration: `2024.w35` Closes #825 See merge request oai/openairinterface5g!2943 * !2181 ULSCH power computation * !2915 benchmark for rotate_cpx_vector * !2936 Avoid complete rebuild on cmake run with git info change * !2855 NR UE replace phy_config_request_sent * !2937 small fixes for rfsim * !2925 CI: Increase tested throughput in SA 2x2 pipeline * !2934 Run optimized parity check in ldpc encoder only on supported Zc values * !2912 changes for multi-RU support in fhi72 * !2928 Distribution check: check for F40, remove old U/RHEL releases * !2913 NR gNB cleanup * !2927 Update Aerial docs to reference current version * !2940 remove double define with nr_common.h
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
- 01 Sep, 2024 3 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
- 30 Aug, 2024 8 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
Merge remote-tracking branch 'origin/NR_UE_MAC_PHY_separation_improvements' into integration_2024_w35
-
Robert Schmidt authored
At least in Eurecom, there are no RHEL 7/CentOS 7+8 servers. Existing installations will work, but we don't want to encourage people to use these old distributions, so remove it. Also, they reached EOL Add CentOS stream as an alternative.
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
In the past, it seemed that we had to add a trailing slash (/) after the OpenShift Registry URI. Now, at least on the CI machine matix, this makes it fail: INFO: oc whoami -t | docker login -u oaicicd --password-stdin default-route-openshift-image-registry.apps.oai.cs.eurecom.fr/ INFO: docker pull default-route-openshift-image-registry.apps.oai.cs.eurecom.fr/oaicicd-ran/oai-gnb:develop-46a1d2a6 WARNING: command "docker pull default-route-openshift-image-registry.apps.oai.cs.eurecom.fr/oaicicd-ran/oai-gnb:develop-46a1d2a6" returned non-zero returncode 1: output: Error response from daemon: Head "https://default-route-openshift-image-registry.apps.oai.cs.eurecom.fr/v2/oaicicd-ran/oai-gnb/manifests/develop-46a1d2a6": unauthorized: authentication required Remove the trailing slash makes it work, like so: INFO: oc whoami -t | docker login -u oaicicd --password-stdin default-route-openshift-image-registry.apps.oai.cs.eurecom.fr INFO: docker pull default-route-openshift-image-registry.apps.oai.cs.eurecom.fr/oaicicd-ran/oai-gnb:develop-46a1d2a6 The docker pull succeeds.
-