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
759b0ec3
Commit
759b0ec3
authored
Oct 15, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup rrc_CU_process_ue_modification_required(): remove protocol_ctxt_t
parent
ff3a14f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+3
-4
No files found.
openair2/RRC/NR/rrc_gNB.c
View file @
759b0ec3
...
...
@@ -1946,11 +1946,10 @@ static void rrc_CU_process_ue_context_modification_response(MessageDef *msg_p, i
}
}
static
void
rrc_CU_process_ue_modification_required
(
MessageDef
*
msg_p
)
static
void
rrc_CU_process_ue_modification_required
(
MessageDef
*
msg_p
,
instance_t
instance
)
{
gNB_RRC_INST
*
rrc
=
RC
.
nrrrc
[
instance
];
f1ap_ue_context_modif_required_t
*
required
=
&
F1AP_UE_CONTEXT_MODIFICATION_REQUIRED
(
msg_p
);
protocol_ctxt_t
ctxt
=
{.
rntiMaybeUEid
=
required
->
gNB_CU_ue_id
,
.
module_id
=
0
,
.
instance
=
0
,
.
enb_flag
=
1
,
.
eNB_index
=
0
};
gNB_RRC_INST
*
rrc
=
RC
.
nrrrc
[
ctxt
.
module_id
];
rrc_gNB_ue_context_t
*
ue_context_p
=
rrc_gNB_get_ue_context
(
rrc
,
required
->
gNB_CU_ue_id
);
if
(
ue_context_p
==
NULL
)
{
LOG_E
(
RRC
,
"Could not find UE context for CU UE ID %d, cannot handle UE context modification request
\n
"
,
required
->
gNB_CU_ue_id
);
...
...
@@ -2344,7 +2343,7 @@ void *rrc_gnb_task(void *args_p) {
break
;
case
F1AP_UE_CONTEXT_MODIFICATION_REQUIRED
:
rrc_CU_process_ue_modification_required
(
msg_p
);
rrc_CU_process_ue_modification_required
(
msg_p
,
instance
);
break
;
case
F1AP_UE_CONTEXT_RELEASE_REQ
:
...
...
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