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
Michael Black
OpenXG-RAN
Commits
388cfafe
Commit
388cfafe
authored
Feb 07, 2022
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stop scheduling in UL after ul_failure_timer
parent
759314a1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
+4
-2
No files found.
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
View file @
388cfafe
...
@@ -2241,7 +2241,8 @@ void ulsch_scheduler_pre_ue_select_fairRR(
...
@@ -2241,7 +2241,8 @@ void ulsch_scheduler_pre_ue_select_fairRR(
if
(
UE_info
->
UE_template
[
CC_id
][
UE_id
].
configured
==
FALSE
)
if
(
UE_info
->
UE_template
[
CC_id
][
UE_id
].
configured
==
FALSE
)
continue
;
continue
;
if
(
UE_info
->
UE_sched_ctrl
[
UE_id
].
ul_out_of_sync
==
1
)
if
(
UE_info
->
UE_sched_ctrl
[
UE_id
].
ul_failure_timer
>
0
||
UE_info
->
UE_sched_ctrl
[
UE_id
].
ul_out_of_sync
==
1
)
continue
;
continue
;
// UL DCI
// UL DCI
...
@@ -2403,7 +2404,8 @@ void ulsch_scheduler_pre_ue_select_fairRR(
...
@@ -2403,7 +2404,8 @@ void ulsch_scheduler_pre_ue_select_fairRR(
if
(
UE_info
->
UE_template
[
CC_id
][
UE_id
].
configured
==
FALSE
)
if
(
UE_info
->
UE_template
[
CC_id
][
UE_id
].
configured
==
FALSE
)
continue
;
continue
;
if
(
UE_info
->
UE_sched_ctrl
[
UE_id
].
ul_out_of_sync
==
1
)
if
(
UE_info
->
UE_sched_ctrl
[
UE_id
].
ul_failure_timer
>
0
||
UE_info
->
UE_sched_ctrl
[
UE_id
].
ul_out_of_sync
==
1
)
continue
;
continue
;
if
(
(
ulsch_ue_select
[
CC_id
].
ue_num
>=
ulsch_ue_max_num
[
CC_id
])
||
(
cc_id_flag
[
CC_id
]
==
1
)
)
{
if
(
(
ulsch_ue_select
[
CC_id
].
ue_num
>=
ulsch_ue_max_num
[
CC_id
])
||
(
cc_id_flag
[
CC_id
]
==
1
)
)
{
...
...
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