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
3e63f1da
Commit
3e63f1da
authored
Nov 28, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correctly handle received gNB-DU config update ack
parent
9858a733
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
10 deletions
+3
-10
openair2/F1AP/f1ap_du_interface_management.c
openair2/F1AP/f1ap_du_interface_management.c
+3
-6
openair2/GNB_APP/gnb_app.c
openair2/GNB_APP/gnb_app.c
+0
-4
No files found.
openair2/F1AP/f1ap_du_interface_management.c
View file @
3e63f1da
...
...
@@ -262,12 +262,9 @@ int DU_handle_gNB_DU_CONFIGURATION_UPDATE_ACKNOWLEDGE(instance_t instance,
free_f1ap_du_configuration_update_acknowledge
(
&
in
);
return
-
1
;
}
// Allocate and send an ITTI message
MessageDef
*
msg_p
=
itti_alloc_new_message
(
TASK_DU_F1
,
0
,
F1AP_GNB_DU_CONFIGURATION_UPDATE_ACKNOWLEDGE
);
f1ap_gnb_du_configuration_update_acknowledge_t
*
msg
=
&
F1AP_GNB_DU_CONFIGURATION_UPDATE_ACKNOWLEDGE
(
msg_p
);
// Copy the decoded message to the ITTI message (RRC thread will free it)
*
msg
=
in
;
// Copy the decoded message to the ITTI message (RRC thread will free it)
itti_send_msg_to_task
(
TASK_GNB_APP
,
GNB_MODULE_ID_TO_INSTANCE
(
assoc_id
),
msg_p
);
gnb_du_configuration_update_acknowledge
(
&
in
);
free_f1ap_du_configuration_update_acknowledge
(
&
in
);
return
0
;
}
...
...
openair2/GNB_APP/gnb_app.c
View file @
3e63f1da
...
...
@@ -238,10 +238,6 @@ void *gNB_app_task(void *args_p)
break
;
case
F1AP_GNB_DU_CONFIGURATION_UPDATE_ACKNOWLEDGE
:
LOG_E
(
GNB_APP
,
"[gNB %ld] Handling of %s message not implemented yet
\n
"
,
instance
,
msg_name
);
break
;
case
NGAP_DEREGISTERED_GNB_IND
:
LOG_W
(
GNB_APP
,
"[gNB %ld] Received %s: associated AMF %d
\n
"
,
instance
,
msg_name
,
NGAP_DEREGISTERED_GNB_IND
(
msg_p
).
nb_amf
);
...
...
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