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
5bdaeb57
Commit
5bdaeb57
authored
3 years ago
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stop scheduling DL on UL failure or out of sync
parent
388cfafe
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
+13
-0
No files found.
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
View file @
5bdaeb57
...
...
@@ -220,6 +220,11 @@ void dlsch_scheduler_pre_ue_select_fairRR(
continue
;
}
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
;
if
(
mac_eNB_get_rrc_status
(
module_idP
,
rnti
)
<
RRC_CONNECTED
)
{
continue
;
}
...
...
@@ -335,6 +340,10 @@ void dlsch_scheduler_pre_ue_select_fairRR(
if
(
rnti
==
NOT_A_RNTI
)
continue
;
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
;
if
(
mac_eNB_get_rrc_status
(
module_idP
,
rnti
)
<
RRC_CONNECTED
)
{
continue
;
}
...
...
@@ -459,6 +468,10 @@ void dlsch_scheduler_pre_ue_select_fairRR(
if
(
rnti
==
NOT_A_RNTI
)
continue
;
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
;
if
(
mac_eNB_get_rrc_status
(
module_idP
,
rnti
)
<
RRC_CONNECTED
)
{
continue
;
}
...
...
This diff is collapsed.
Click to expand it.
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