Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Commits
6bf0f98e
Commit
6bf0f98e
authored
2 years ago
by
Robert Schmidt
Browse files
Options
Downloads
Patches
Plain Diff
Skip scheduling of UEs if there are no free HARQs
parent
06188125
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!1757
Draft: Use pMAX value in configuration file, instead of hardcoded '23' in asn1_msg.c
,
!1667
integration_2022_wk33
,
!1562
Correctly handle SIGINT/stop signal in nr-softmodem
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_dlsch.c
+8
-0
8 additions, 0 deletions
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_dlsch.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
+9
-0
9 additions, 0 deletions
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
with
17 additions
and
0 deletions
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_dlsch.c
+
8
−
0
View file @
6bf0f98e
...
@@ -613,6 +613,14 @@ void pf_dl(module_id_t module_id,
...
@@ -613,6 +613,14 @@ void pf_dl(module_id_t module_id,
return
;
return
;
}
else
{
}
else
{
/* skip this UE if there are no free HARQ processes. This can happen e.g.
* if the UE disconnected in L2sim, in which case the gNB is not notified
* (this can be considered a design flaw) */
if
(
sched_ctrl
->
available_dl_harq
.
head
<
0
)
{
LOG_D
(
NR_MAC
,
"RNTI %04x has no free DL HARQ process, skipping
\n
"
,
UE
->
rnti
);
continue
;
}
/* Check DL buffer and skip this UE if no bytes and no TA necessary */
/* Check DL buffer and skip this UE if no bytes and no TA necessary */
if
(
sched_ctrl
->
num_total_bytes
==
0
&&
frame
!=
(
sched_ctrl
->
ta_frame
+
10
)
%
1024
)
if
(
sched_ctrl
->
num_total_bytes
==
0
&&
frame
!=
(
sched_ctrl
->
ta_frame
+
10
)
%
1024
)
continue
;
continue
;
...
...
This diff is collapsed.
Click to expand it.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
+
9
−
0
View file @
6bf0f98e
...
@@ -1085,6 +1085,15 @@ void pf_ul(module_id_t module_id,
...
@@ -1085,6 +1085,15 @@ void pf_ul(module_id_t module_id,
continue
;
continue
;
}
}
/* skip this UE if there are no free HARQ processes. This can happen e.g.
* if the UE disconnected in L2sim, in which case the gNB is not notified
* (this can be considered a design flaw) */
if
(
sched_ctrl
->
available_ul_harq
.
head
<
0
)
{
LOG_D
(
NR_MAC
,
"RNTI %04x has no free UL HARQ process, skipping
\n
"
,
UE
->
rnti
);
continue
;
}
const
int
B
=
max
(
0
,
sched_ctrl
->
estimated_ul_buffer
-
sched_ctrl
->
sched_ul_bytes
);
const
int
B
=
max
(
0
,
sched_ctrl
->
estimated_ul_buffer
-
sched_ctrl
->
sched_ul_bytes
);
/* preprocessor computed sched_frame/sched_slot */
/* preprocessor computed sched_frame/sched_slot */
const
bool
do_sched
=
nr_UE_is_to_be_scheduled
(
scc
,
0
,
UE
,
sched_pusch
->
frame
,
sched_pusch
->
slot
,
nrmac
->
ulsch_max_frame_inactivity
);
const
bool
do_sched
=
nr_UE_is_to_be_scheduled
(
scc
,
0
,
UE
,
sched_pusch
->
frame
,
sched_pusch
->
slot
,
nrmac
->
ulsch_max_frame_inactivity
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment