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
cb29d989
Commit
cb29d989
authored
May 31, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TODO change IDs/RRC/CU UE ctxt modif response handling
UE context modif resp
parent
65453d7c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+11
-0
No files found.
openair2/RRC/NR/rrc_gNB.c
View file @
cb29d989
...
...
@@ -2237,6 +2237,17 @@ static void rrc_CU_process_ue_context_modification_response(MessageDef *msg_p, i
rrc_gNB_generate_dedicatedRRCReconfiguration
(
&
ctxt
,
ue_context_p
);
}
// Reconfiguration should have been sent to the UE, so it will attempt the
// handover. Update with new RNTI, and update secondary UE association
if
(
UE
->
ho_context
!=
NULL
)
{
f1_ue_data_t
ue_data
=
cu_get_f1_ue_data
(
UE
->
rrc_ue_id
);
ue_data
.
secondary_ue
=
UE
->
ho_context
->
data
.
intra_cu
.
target_secondary_ue
;
ue_data
.
du_assoc_id
=
UE
->
ho_context
->
data
.
intra_cu
.
target_du
;
cu_remove_f1_ue_data
(
UE
->
rrc_ue_id
);
cu_add_f1_ue_data
(
UE
->
rrc_ue_id
,
&
ue_data
);
UE
->
rnti
=
UE
->
ho_context
->
data
.
intra_cu
.
new_rnti
;
}
}
static
void
rrc_CU_process_ue_modification_required
(
MessageDef
*
msg_p
)
...
...
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