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
alex037yang
OpenXG-RAN
Commits
245a6da1
Commit
245a6da1
authored
Feb 11, 2021
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
On resource depletion: do not abort ULSCH scheduling
parent
3c3712ef
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
+3
-3
No files found.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_ulsch.c
View file @
245a6da1
...
@@ -613,7 +613,7 @@ void pf_ul(module_id_t module_id,
...
@@ -613,7 +613,7 @@ void pf_ul(module_id_t module_id,
if
(
rbStart
+
sched_pusch
->
rbSize
>=
bwpSize
)
{
if
(
rbStart
+
sched_pusch
->
rbSize
>=
bwpSize
)
{
LOG_D
(
MAC
,
"cannot allocate retransmission of UE %d/RNTI %04x: no resources
\n
"
,
LOG_D
(
MAC
,
"cannot allocate retransmission of UE %d/RNTI %04x: no resources
\n
"
,
UE_id
,
UE_info
->
rnti
[
UE_id
]);
UE_id
,
UE_info
->
rnti
[
UE_id
]);
return
;
continue
;
}
}
sched_pusch
->
rbStart
=
rbStart
;
sched_pusch
->
rbStart
=
rbStart
;
...
@@ -670,7 +670,7 @@ void pf_ul(module_id_t module_id,
...
@@ -670,7 +670,7 @@ void pf_ul(module_id_t module_id,
if
(
rbStart
+
min_rb
>=
bwpSize
)
{
if
(
rbStart
+
min_rb
>=
bwpSize
)
{
LOG_D
(
MAC
,
"cannot allocate continuous data for UE %d/RNTI %04x: no resources
\n
"
,
LOG_D
(
MAC
,
"cannot allocate continuous data for UE %d/RNTI %04x: no resources
\n
"
,
UE_id
,
UE_info
->
rnti
[
UE_id
]);
UE_id
,
UE_info
->
rnti
[
UE_id
]);
return
;
continue
;
}
}
sched_pusch
->
rbStart
=
rbStart
;
sched_pusch
->
rbStart
=
rbStart
;
sched_pusch
->
rbSize
=
min_rb
;
sched_pusch
->
rbSize
=
min_rb
;
...
@@ -752,7 +752,7 @@ void pf_ul(module_id_t module_id,
...
@@ -752,7 +752,7 @@ void pf_ul(module_id_t module_id,
if
(
rbStart
+
min_rb
>=
bwpSize
)
{
if
(
rbStart
+
min_rb
>=
bwpSize
)
{
LOG_D
(
MAC
,
"cannot allocate UL data for UE %d/RNTI %04x: no resources
\n
"
,
LOG_D
(
MAC
,
"cannot allocate UL data for UE %d/RNTI %04x: no resources
\n
"
,
UE_id
,
UE_info
->
rnti
[
UE_id
]);
UE_id
,
UE_info
->
rnti
[
UE_id
]);
return
;
continue
;
}
}
/* Calculate the current scheduling bytes */
/* Calculate the current scheduling bytes */
...
...
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