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
88d7ad11
Commit
88d7ad11
authored
3 years ago
by
luis_pereira87
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved fix gNB downlink MAC short/long header accordingly with RLC buffer size
parent
081a2879
scs_60_iisc
NRUE_usedlschparallel
NR_2port_CSIRS
NR_F1C_F1U_extensions
NR_RRCReconfiguration_BWP
NR_UE_SA
NR_UE_reworking_UCI_procedures
NR_new_ul_antennaports
NR_reworking_UL_antennaports
bandwidth-testing
ci-add-sabox-support
ci_nsa_2x2_implem
ci_test_nsa_2x2
ci_update_build_nasmesh
code-cleanup-20210716
develop
develop-NR_SA_F1AP_5GRECORDS-abs
develop-NSA_SA_fixes
fix-physim-run-script-on-cluster
integration_2021_wk30
integration_2021_wk30_b
2021.w30
2021.w29
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
18 deletions
+15
-18
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_dlsch.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_dlsch.c
+15
-18
No files found.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_dlsch.c
View file @
88d7ad11
...
...
@@ -1101,19 +1101,21 @@ void nr_schedule_ue_spec(module_id_t module_id,
int
dlsch_total_bytes
=
0
;
if
(
sched_ctrl
->
num_total_bytes
>
0
)
{
tbs_size_t
len
=
0
;
while
(
size
>
3
)
{
// Check MAC header short/long format and size
// Check if data from RLC is equal or longer than 256B or not.
// Data from RLC was checked before, in function nr_store_dlsch_buffer
int
header_size
=
sizeof
(
NR_MAC_SUBHEADER_SHORT
);
if
(
sched_ctrl
->
num_total_bytes
>=
256
)
{
header_size
=
sizeof
(
NR_MAC_SUBHEADER_LONG
);
}
while
(
size
>
header_size
)
{
// Reserve space for short or long header.
// Check if data from RLC is equal or longer than 256B or not.
// Data from RLC was checked before, in function nr_store_dlsch_buffer
uint8_t
*
header
=
buf
;
if
(
sched_ctrl
->
num_total_bytes
>=
256
)
{
buf
+=
sizeof
(
NR_MAC_SUBHEADER_LONG
);
size
-=
sizeof
(
NR_MAC_SUBHEADER_LONG
);
}
else
{
buf
+=
sizeof
(
NR_MAC_SUBHEADER_SHORT
);
size
-=
sizeof
(
NR_MAC_SUBHEADER_SHORT
);
}
buf
+=
header_size
;
size
-=
header_size
;
/* limit requested number of bytes to what preprocessor specified, or
* such that TBS is full */
...
...
@@ -1143,7 +1145,7 @@ void nr_schedule_ue_spec(module_id_t module_id,
if
(
len
==
0
)
break
;
if
(
sched_ctrl
->
num_total_bytes
>=
256
)
{
if
(
header_size
==
sizeof
(
NR_MAC_SUBHEADER_LONG
)
)
{
((
NR_MAC_SUBHEADER_LONG
*
)
header
)
->
R
=
0
;
((
NR_MAC_SUBHEADER_LONG
*
)
header
)
->
F
=
1
;
((
NR_MAC_SUBHEADER_LONG
*
)
header
)
->
LCID
=
lcid
;
...
...
@@ -1162,13 +1164,8 @@ void nr_schedule_ue_spec(module_id_t module_id,
}
if
(
len
==
0
)
{
/* RLC did not have data anymore, mark buffer as unused */
if
(
sched_ctrl
->
num_total_bytes
>=
256
)
{
buf
-=
sizeof
(
NR_MAC_SUBHEADER_LONG
);
size
+=
sizeof
(
NR_MAC_SUBHEADER_LONG
);
}
else
{
buf
-=
sizeof
(
NR_MAC_SUBHEADER_SHORT
);
size
+=
sizeof
(
NR_MAC_SUBHEADER_SHORT
);
}
buf
-=
header_size
;
size
+=
header_size
;
}
}
else
if
(
get_softmodem_params
()
->
phy_test
||
get_softmodem_params
()
->
do_ra
||
get_softmodem_params
()
->
sa
)
{
...
...
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