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
wangwenhui
OpenXG-RAN
Commits
c8bff02e
Commit
c8bff02e
authored
Jun 27, 2018
by
Haruki NAOI
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: assertion occurs in nack_or_dtx_reported() function when RRCConnectionSetup moves.
parent
25d36e3a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
openair2/LAYER2/MAC/eNB_scheduler_primitives.c
openair2/LAYER2/MAC/eNB_scheduler_primitives.c
+5
-2
No files found.
openair2/LAYER2/MAC/eNB_scheduler_primitives.c
View file @
c8bff02e
...
...
@@ -4351,8 +4351,11 @@ static int nack_or_dtx_reported(
int
i
;
if
(
cc
->
tdd_Config
)
{
AssertFatal
(
0
==
1
,
"TDD to be done. FAPI structures (see nfapi_harq_indication_tdd_rel13_t) are not clean. To be cleaned as well?
\n
"
);
abort
();
nfapi_harq_indication_tdd_rel13_t
*
hi
=
&
harq_pdu
->
harq_indication_tdd_rel13
;
for
(
i
=
0
;
i
<
hi
->
number_of_ack_nack
;
hi
++
)
if
(
hi
->
harq_data
[
0
].
bundling
.
value_0
!=
1
)
//only bundling is used for tdd for now
return
1
;
return
0
;
}
else
{
nfapi_harq_indication_fdd_rel13_t
*
hi
=
&
harq_pdu
->
harq_indication_fdd_rel13
;
for
(
i
=
0
;
i
<
hi
->
number_of_ack_nack
;
hi
++
)
...
...
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