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
f28f9e52
Commit
f28f9e52
authored
Jul 18, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use gNB_mac consistently
parent
6bc486f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
+3
-3
No files found.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
View file @
f28f9e52
...
...
@@ -880,13 +880,13 @@ static void _nr_rx_sdu(const module_id_t gnb_mod_idP,
nr_mac_trigger_release_timer
(
&
UE
->
UE_sched_ctrl
,
UE
->
current_UL_BWP
.
scs
);
// Replace the current UE by the UE identified by C-RNTI
UE
=
find_nr_UE
(
&
RC
.
nrmac
[
gnb_mod_idP
]
->
UE_info
,
crnti
);
UE
=
find_nr_UE
(
&
gNB_mac
->
UE_info
,
crnti
);
if
(
!
UE
)
{
// The UE identified by C-RNTI no longer exists at the gNB
// Let's abort the current RA, so the UE will trigger a new RA later but using RRCSetupRequest instead. A better
// solution may be implemented
LOG_W
(
NR_MAC
,
"No UE found with C-RNTI %04x, ignoring Msg3 to have UE come back with new RA attempt
\n
"
,
ra
->
rnti
);
mac_remove_nr_ue
(
RC
.
nrmac
[
gnb_mod_idP
]
,
ra
->
rnti
);
mac_remove_nr_ue
(
gNB_mac
,
ra
->
rnti
);
nr_clear_ra_proc
(
ra
);
return
;
}
...
...
@@ -914,7 +914,7 @@ static void _nr_rx_sdu(const module_id_t gnb_mod_idP,
}
else
{
// Trigger RRC Reconfiguration
LOG_I
(
NR_MAC
,
"Received UL_SCH_LCID_C_RNTI with C-RNTI 0x%04x, triggering RRC Reconfiguration
\n
"
,
UE
->
rnti
);
nr_mac_trigger_reconfiguration
(
RC
.
nrmac
[
gnb_mod_idP
]
,
UE
);
nr_mac_trigger_reconfiguration
(
gNB_mac
,
UE
);
}
}
else
{
// UE Contention Resolution Identity
...
...
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