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
wangjie
OpenXG-RAN
Commits
f99e2d4a
Commit
f99e2d4a
authored
Feb 13, 2020
by
Tsurunaga, Makoto
Committed by
Haruki NAOI
Mar 23, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix number of the array of DRB_active
(cherry picked from commit 8feabbef49c68f1f46e1dde0a3763b13680afcb5)
parent
4eb1a8b8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
+1
-1
openair2/RRC/LTE/rrc_defs.h
openair2/RRC/LTE/rrc_defs.h
+1
-1
No files found.
openair2/LAYER2/MAC/eNB_scheduler_fairRR.c
View file @
f99e2d4a
...
...
@@ -139,7 +139,7 @@ void pre_scd_nb_rbs_required( module_id_t module_idP,
if
(
ue_contextP
==
NULL
)
continue
;
for
(
lc_id
=
DCCH
;
lc_id
<
=
MAX_NUM_LCID
;
lc_id
++
)
{
for
(
lc_id
=
DCCH
;
lc_id
<
MAX_NUM_LCID
;
lc_id
++
)
{
if
(
lc_id
>=
DTCH
)
{
drb_id
=
lc_id
-
2
;
if
(
ue_contextP
->
ue_context
.
DRB_active
[
drb_id
]
==
0
)
{
...
...
openair2/RRC/LTE/rrc_defs.h
View file @
f99e2d4a
...
...
@@ -629,7 +629,7 @@ typedef struct eNB_RRC_UE_s {
LTE_DRB_ToAddModList_t
*
DRB_configList
;
LTE_DRB_ToAddModList_t
*
DRB_configList2
[
RRC_TRANSACTION_IDENTIFIER_NUMBER
];
LTE_DRB_ToReleaseList_t
*
DRB_Release_configList2
[
RRC_TRANSACTION_IDENTIFIER_NUMBER
];
uint8_t
DRB_active
[
8
];
uint8_t
DRB_active
[
9
];
struct
LTE_PhysicalConfigDedicated
*
physicalConfigDedicated
;
struct
LTE_SPS_Config
*
sps_Config
;
LTE_MeasObjectToAddMod_t
*
MeasObj
[
MAX_MEAS_OBJ
];
...
...
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