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
c416c57f
Commit
c416c57f
authored
Jul 31, 2024
by
Guido Casati
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplified F1AP gNB-CU Configuration Update message struct
* removed optional IEs, whose encoding/decoding is not done
parent
3b11764d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
17 deletions
+2
-17
openair2/COMMON/f1ap_messages_types.h
openair2/COMMON/f1ap_messages_types.h
+2
-12
openair2/GNB_APP/gnb_app.c
openair2/GNB_APP/gnb_app.c
+0
-4
openair2/GNB_APP/gnb_config.c
openair2/GNB_APP/gnb_config.c
+0
-1
No files found.
openair2/COMMON/f1ap_messages_types.h
View file @
c416c57f
...
...
@@ -213,18 +213,8 @@ typedef struct f1ap_setup_resp_s {
}
f1ap_setup_resp_t
;
typedef
struct
f1ap_gnb_cu_configuration_update_s
{
/* Connexion id used between SCTP/F1AP */
uint16_t
cnx_id
;
/* SCTP association id */
sctp_assoc_t
assoc_id
;
/* Number of SCTP streams used for a mme association */
uint16_t
sctp_in_streams
;
uint16_t
sctp_out_streams
;
/// string holding gNB_CU_name
char
*
gNB_CU_name
;
/// Transaction ID
uint64_t
transaction_id
;
/// number of DU cells to activate
uint16_t
num_cells_to_activate
;
//0< num_cells_to_activate/mod <= 512;
served_cells_to_activate_t
cells_to_activate
[
F1AP_MAX_NB_CELLS
];
...
...
openair2/GNB_APP/gnb_app.c
View file @
c416c57f
...
...
@@ -236,10 +236,6 @@ void *gNB_app_task(void *args_p)
case
F1AP_GNB_CU_CONFIGURATION_UPDATE
:
AssertFatal
(
NODE_IS_DU
(
node_type
),
"Should not have received F1AP_GNB_CU_CONFIGURATION_UPDATE in CU/gNB
\n
"
);
LOG_I
(
GNB_APP
,
"Received %s: associated ngran_gNB_CU %s with %d cells to activate
\n
"
,
ITTI_MSG_NAME
(
msg_p
),
F1AP_GNB_CU_CONFIGURATION_UPDATE
(
msg_p
).
gNB_CU_name
,
F1AP_GNB_CU_CONFIGURATION_UPDATE
(
msg_p
).
num_cells_to_activate
);
cell_to_activate
+=
F1AP_GNB_CU_CONFIGURATION_UPDATE
(
msg_p
).
num_cells_to_activate
;
gNB_app_handle_f1ap_gnb_cu_configuration_update
(
&
F1AP_GNB_CU_CONFIGURATION_UPDATE
(
msg_p
));
...
...
openair2/GNB_APP/gnb_config.c
View file @
c416c57f
...
...
@@ -2367,7 +2367,6 @@ int gNB_app_handle_f1ap_gnb_cu_configuration_update(f1ap_gnb_cu_configuration_up
ret
++
;
mac
->
f1_config
.
setup_resp
=
malloc
(
sizeof
(
*
mac
->
f1_config
.
setup_resp
));
AssertFatal
(
mac
->
f1_config
.
setup_resp
!=
NULL
,
"out of memory
\n
"
);
mac
->
f1_config
.
setup_resp
->
gNB_CU_name
=
gnb_cu_cfg_update
->
gNB_CU_name
;
mac
->
f1_config
.
setup_resp
->
num_cells_to_activate
=
gnb_cu_cfg_update
->
num_cells_to_activate
;
mac
->
f1_config
.
setup_resp
->
cells_to_activate
[
0
]
=
gnb_cu_cfg_update
->
cells_to_activate
[
0
];
}
else
{
...
...
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