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
lizhongxiao
OpenXG-RAN
Commits
db2e27e6
Commit
db2e27e6
authored
Dec 20, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increase log level for CU-UP selection to improve visibility
parent
09652061
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
openair2/RRC/NR/rrc_gNB_cuup.c
openair2/RRC/NR/rrc_gNB_cuup.c
+2
-2
No files found.
openair2/RRC/NR/rrc_gNB_cuup.c
View file @
db2e27e6
...
...
@@ -46,7 +46,7 @@ static const nr_rrc_cuup_container_t *select_cuup_slice(const struct rrc_cuup_tr
for
(
int
s
=
0
;
s
<
sr
->
plmn
[
p
].
supported_slices
;
++
s
)
{
e1ap_nssai_t
*
nssai
=
&
sr
->
plmn
[
p
].
slice
[
s
];
if
(
nssai
->
sst
==
sst
&&
nssai
->
sd
==
sd
)
{
LOG_
I
(
RRC
,
"selecting CU-UP ID %ld based on exact NSSAI match (%d:0x%06x)
\n
"
,
sr
->
gNB_cu_up_id
,
sst
,
sd
);
LOG_
A
(
RRC
,
"selecting CU-UP ID %ld based on exact NSSAI match (%d:0x%06x)
\n
"
,
sr
->
gNB_cu_up_id
,
sst
,
sd
);
return
cuup
;
/* exact match */
}
else
if
(
nssai
->
sst
==
sst
&&
second_best_match
==
NULL
)
{
LOG_I
(
RRC
,
"second best match: CU-UP ID %ld matches SST %d
\n
"
,
sr
->
gNB_cu_up_id
,
sst
);
...
...
@@ -66,7 +66,7 @@ static const nr_rrc_cuup_container_t *select_cuup_round_robin(size_t n_t, const
nr_rrc_cuup_container_t
*
cuup
=
NULL
;
RB_FOREACH
(
cuup
,
rrc_cuup_tree
,
(
struct
rrc_cuup_tree
*
)
&
t
)
{
if
(
m
==
0
)
{
LOG_
I
(
RRC
,
"round-robin match: select CU-UP ID %ld (no NSSAI match)
\n
"
,
cuup
->
setup_req
->
gNB_cu_up_id
);
LOG_
W
(
RRC
,
"round-robin match: select CU-UP ID %ld (no NSSAI match)
\n
"
,
cuup
->
setup_req
->
gNB_cu_up_id
);
return
cuup
;
}
m
--
;
...
...
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