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
a3d78407
Commit
a3d78407
authored
Jun 03, 2020
by
Haruki NAOI
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: DLSCH scheduling dose not work on LCID 4.
(cherry picked from commit 78852a03f3c5581b53a88929f9c1784fc60c5376)
parent
2c8f47be
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
+9
-2
No files found.
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
View file @
a3d78407
...
...
@@ -112,6 +112,9 @@ int header_length_last;
int
header_length_total
;
int
dl_dtch_num
;
int
dl_dtch_list
[
MAX_NUM_DTCH
];
eNB_MAC_INST
*
eNB
=
RC
.
mac
[
module_idP
];
UE_list_t
*
UE_list
=
&
(
eNB
->
UE_list
);
UE_sched_ctrl_t
*
UE_scheduling_control
=
NULL
;
for
(
UE_id
=
0
;
UE_id
<
NUMBER_OF_UE_MAX
;
UE_id
++
)
{
if
(
pre_scd_activeUE
[
UE_id
]
!=
TRUE
)
...
...
@@ -123,13 +126,17 @@ int dl_dtch_num;
rnti
=
UE_RNTI
(
module_idP
,
UE_id
);
ue_contextP
=
rrc_eNB_get_ue_context
(
RC
.
rrc
[
module_idP
],
rnti
);
UE_scheduling_control
=
&
(
UE_list
->
UE_sched_ctrl
[
UE_id
]);
if
(
ue_contextP
==
NULL
)
continue
;
for
(
lc_id
=
DCCH
;
lc_id
<
MAX_NUM_LCID
;
lc_id
++
)
{
if
(
lc_id
==
4
){
/* LCID 4 */
if
(
UE_scheduling_control
->
volte_configured
==
TRUE
)
{
if
(
lc_id
==
UE_scheduling_control
->
volte_lcid
){
continue
;
}
}
if
(
lc_id
>=
DTCH
)
{
drb_id
=
lc_id
-
2
;
if
(
ue_contextP
->
ue_context
.
DRB_active
[
drb_id
]
==
0
)
{
...
...
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