- 30 Nov, 2023 12 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
Correctly match UEs based on the NSSAI in MAC and RRC. There is a convenience function capture_sst_sd() that extracts SST and SD (which form the NSSAI). Because a previous version used integers to convey the slice identifier, this function gracefully handles this case, although it is not spec-compliant.
-
Robert Schmidt authored
Prior to this commit, the RAN function for KPM is leaking memory: it allocates using calloc() but never frees it. The fix consists of not allocating this memory on the heap in the first place, but on the stack. Therefore, there are changes to pass in a pointer to various functions to the structure on the stack, instead of passing the "container" for the heap memory by value. Further, the MAC was allocating an excessive amount of memory (N times sizeof(NR_UE_info_t)). Instead of copying the entire struct, the present code stores a pointer to the MAC UE container (NR_UE_info_t *). For the RRC, there is a similar simplification that consists in not storing the entire struct f1_ue_data_t (which is not required), but only the RRC UE ID. Note that both MAC and RRC might suffer from race conditions. For the MAC, we should lock the scheduler for the time we read statistics. For the RRC, the problem is more delicate as no mutex exists; the RRC assumes everything is executed synchronously in the ITTI task loop. In both cases, this commit does not address this problem
-
Robert Schmidt authored
Filtering UEs by NSSAI is broken, so remove it. A later commit will reestablish this functionality. Simplify the code: we only handle one condition, so we can check for it upfront.
-
Robert Schmidt authored
-
Robert Schmidt authored
This commit introduces an additional (implicit) option that signals if the E2 agent is to be activated or not. When reading the configuration, we now check if all fields are set, and activate the E2 agent only if this is the case. If not, we only print a warning and start the gNB without the agent. Note that previously, if not all fields are set correctly, the gNB stopped. To implement this behavior, it is necessary to change the defaults of the RIC IP and the directory for SMs to a (non-NULL) default value. Otherwise, the configuration system would not consider the field to be set to the default, and wrongly assumes the field is set, even though it is not; at least, this change is necessary to make config_isparamset() return NULL if the configuration is not set.
-
Robert Schmidt authored
3GPP has the concept of a gNB-CU-UP ID and a (separate) gNB ID (for gNB, CU-CP). This commit introduces the gNB-CU-UP as a separate ID that has to be set in the configuration file when running as a CU-UP. For the CU/monolithic gNB, it is optional (but needs to be the same as the gNB-ID if specified). The CU-UP ID is necessary, as some entities, e.g., the e2 agent, need to signal both IDs, e.g., to reconcile a CU-CP and (multiple) CU-UP(s) belonging together.
-
Robert Schmidt authored
3GPP has the concept of a gNB-DU ID and a (separate) gNB ID (for gNB, CU). This commit introduces the gNB-DU as a separate ID that has to be set in the configuration file. It is necessary, as some entities, e.g., the e2 agent, need to signal both IDs, e.g., to reconcile a CU and (multiple) DU(s) belonging together.
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
- 28 Nov, 2023 2 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
See merge request oai/openairinterface5g!2450 * !2440 hotfix: set PDCP t-reordering to 100ms * !2439 rfsimulator: ignore PIPE signal * !2441 minor: documentation: advertise correct default value for --ssb * !2446 chore(ci): displaying the ASN1C commit * !2443 CI documentation: updates and how to reproduce * !2355 NR UE improve handling of MSG4 feedback in default PUCCH * !2408 NR UE MAC config improvements * !2431 T: isolate generated .h files when using make * !2442 nr pdcp: rework reestablishment * !2448 lte: switch to RRC release 16.13.0 * !2088 Implementation of logical channel prioritization at UE * correctly read timing advance option `-A` in gNB * set sample advance for OAIUE test to make it more stable * set gain for OAIUE test to make it more stable * !2445 Correctly allocate SCC n_TimingAdvanceOffset * !2454 bugfix: fix NSA CI test
-
- 27 Nov, 2023 6 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Cedric Roux authored
It seems like initialDLBWPcontrolResourceSetZero needs to be set otherwise the quectel UE does not accept the Reconfiguration.
-
Robert Schmidt authored
-
Robert Schmidt authored
-
- 24 Nov, 2023 8 commits
-
-
Robert Schmidt authored
Merge remote-tracking branch 'origin/implement_logical_channel_prioritization_ue' into integration_2023_w47
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Cedric Roux authored
A COTS UE is sending UE capabilities with accessStratumRelease "rel16" which is not decoded by our RRC. Switching to RRC 16.13.0 lets our RRC accept these capabilities (and as a positive side effect lets this particular UE work nicely in NSA fr1).
-
luis_pereira87 authored
-
Robert Schmidt authored
-
Robert Schmidt authored
Merge remote-tracking branch 'origin/NR_UE_improve_handling_msg4_feedback' into integration_2023_w47
-
- 23 Nov, 2023 7 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
francescomani authored
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
francescomani authored
-
- 22 Nov, 2023 2 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
- 21 Nov, 2023 2 commits
-
-
francescomani authored
-
Raphael Defosseux authored
Signed-off-by: Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- 20 Nov, 2023 1 commit
-
-
luis_pereira87 authored
-