Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
spbro
OpenXG-RAN
Commits
94581840
Commit
94581840
authored
Jul 08, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/plmn-rrcsetupcomplete-fix' into integration_2024_w27
parents
cf497215
df9e5ccd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
21 deletions
+7
-21
openair2/RRC/NR/rrc_gNB_NGAP.c
openair2/RRC/NR/rrc_gNB_NGAP.c
+7
-21
No files found.
openair2/RRC/NR/rrc_gNB_NGAP.c
View file @
94581840
...
@@ -195,6 +195,13 @@ rrc_gNB_send_NGAP_NAS_FIRST_REQ(
...
@@ -195,6 +195,13 @@ rrc_gNB_send_NGAP_NAS_FIRST_REQ(
// NGAP_NAS_FIRST_REQ (message_p).nas_pdu.length,
// NGAP_NAS_FIRST_REQ (message_p).nas_pdu.length,
// ue_context_pP);
// ue_context_pP);
/* selected_plmn_identity: IE is 1-based, convert to 0-based (C array) */
int
selected_plmn_identity
=
rrcSetupComplete
->
selectedPLMN_Identity
-
1
;
if
(
selected_plmn_identity
!=
0
)
LOG_E
(
NGAP
,
"UE %u: sent selected PLMN identity %ld, but only one PLMN supported
\n
"
,
req
->
gNB_ue_ngap_id
,
rrcSetupComplete
->
selectedPLMN_Identity
);
req
->
selected_plmn_identity
=
0
;
/* always zero because we only support one */
/* Fill UE identities with available information */
/* Fill UE identities with available information */
if
(
UE
->
Initialue_identity_5g_s_TMSI
.
presence
)
{
if
(
UE
->
Initialue_identity_5g_s_TMSI
.
presence
)
{
/* Fill s-TMSI */
/* Fill s-TMSI */
...
@@ -216,27 +223,6 @@ rrc_gNB_send_NGAP_NAS_FIRST_REQ(
...
@@ -216,27 +223,6 @@ rrc_gNB_send_NGAP_NAS_FIRST_REQ(
UE
->
ue_guami
.
amf_set_id
=
req
->
ue_identity
.
guami
.
amf_set_id
;
UE
->
ue_guami
.
amf_set_id
=
req
->
ue_identity
.
guami
.
amf_set_id
;
UE
->
ue_guami
.
amf_pointer
=
req
->
ue_identity
.
guami
.
amf_pointer
;
UE
->
ue_guami
.
amf_pointer
=
req
->
ue_identity
.
guami
.
amf_pointer
;
if
(
r_amf
->
plmn_Identity
!=
NULL
)
{
AssertFatal
(
false
,
"At the moment, OAI RAN does not support multiple PLMN IDs. Therefore, this part has not been tested
\n
"
);
/* selected_plmn_identity: IE is 1-based, convert to 0-based (C array) */
int
selected_plmn_identity
=
rrcSetupComplete
->
selectedPLMN_Identity
-
1
;
req
->
selected_plmn_identity
=
selected_plmn_identity
;
if
((
r_amf
->
plmn_Identity
->
mcc
!=
NULL
)
&&
(
r_amf
->
plmn_Identity
->
mcc
->
list
.
count
>
0
))
{
/* Use first indicated PLMN MCC if it is defined */
req
->
ue_identity
.
guami
.
mcc
=
*
r_amf
->
plmn_Identity
->
mcc
->
list
.
array
[
selected_plmn_identity
];
LOG_I
(
NGAP
,
"[gNB %d] Build NGAP_NAS_FIRST_REQ adding in s_TMSI: GUMMEI MCC %u ue %x
\n
"
,
ctxt_pP
->
module_id
,
req
->
ue_identity
.
guami
.
mcc
,
UE
->
rnti
);
}
if
(
r_amf
->
plmn_Identity
->
mnc
.
list
.
count
>
0
)
{
/* Use first indicated PLMN MNC if it is defined */
req
->
ue_identity
.
guami
.
mnc
=
*
r_amf
->
plmn_Identity
->
mnc
.
list
.
array
[
selected_plmn_identity
];
LOG_I
(
NGAP
,
"[gNB %d] Build NGAP_NAS_FIRST_REQ adding in s_TMSI: GUMMEI MNC %u ue %x
\n
"
,
ctxt_pP
->
module_id
,
req
->
ue_identity
.
guami
.
mnc
,
UE
->
rnti
);
}
}
else
{
/* TODO */
}
LOG_I
(
NGAP
,
LOG_I
(
NGAP
,
"[gNB %d] Build NGAP_NAS_FIRST_REQ adding in s_TMSI: GUAMI amf_set_id %u amf_region_id %u ue %x
\n
"
,
"[gNB %d] Build NGAP_NAS_FIRST_REQ adding in s_TMSI: GUAMI amf_set_id %u amf_region_id %u ue %x
\n
"
,
ctxt_pP
->
module_id
,
ctxt_pP
->
module_id
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment