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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
984c0bff
Commit
984c0bff
authored
Sep 01, 2025
by
Guido Casati
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Send NG HO failure message upon nr_rrc_n2_ho_acknowledge failure
parent
28f92660
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
openair2/RRC/NR/rrc_gNB_mobility.c
openair2/RRC/NR/rrc_gNB_mobility.c
+4
-0
No files found.
openair2/RRC/NR/rrc_gNB_mobility.c
View file @
984c0bff
...
...
@@ -469,6 +469,10 @@ static void nr_rrc_n2_ho_acknowledge(gNB_RRC_INST *rrc, gNB_RRC_UE_t *UE)
byte_array_t
hoCommand
=
rrc_gNB_encode_HandoverCommand
(
UE
,
rrc
);
if
(
hoCommand
.
len
<
0
)
{
LOG_E
(
NR_RRC
,
"ASN1 message encoding failed: failed to generate Handover Command Message
\n
"
);
ngap_handover_failure_t
fail
=
{.
amf_ue_ngap_id
=
UE
->
amf_ue_ngap_id
,
.
cause
.
type
=
NGAP_CAUSE_RADIO_NETWORK
,
.
cause
.
value
=
NGAP_CAUSE_RADIO_NETWORK_HO_FAILURE_IN_TARGET_5GC_NGRAN_NODE_OR_TARGET_SYSTEM
};
UE
->
ho_context
->
target
->
ho_failure
(
rrc
,
UE
->
rrc_ue_id
,
&
fail
);
return
;
}
else
{
LOG_D
(
NR_RRC
,
"HO LOG: Handover Command for UE %u Encoded (%ld bytes)
\n
"
,
UE
->
rrc_ue_id
,
hoCommand
.
len
);
...
...
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