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
be4d934e
Commit
be4d934e
authored
Oct 17, 2016
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hack: do not crash in RLC UM 'should not go here' case
parent
8d8927fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_dar.c
openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_dar.c
+7
-4
No files found.
openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_dar.c
View file @
be4d934e
...
...
@@ -511,10 +511,13 @@ rlc_um_try_reassembly(
// data_p is already ok, done by last loop above
rlc_um_reassembly
(
ctxt_pP
,
rlc_pP
,
data_p
,
size
);
}
else
{
AssertFatal
(
0
!=
0
,
PROTOCOL_RLC_UM_CTXT_FMT
" SHOULD NOT GO HERE (%s:%u)
\n
"
,
PROTOCOL_RLC_UM_CTXT_ARGS
(
ctxt_pP
,
rlc_pP
),
__FILE__
,
__LINE__
);
/* TODO: remove this hack, do it properly (will not be done in the fapi branch,
* the bug is present in develop branch too)
*/
// AssertFatal( 0 !=0, PROTOCOL_RLC_UM_CTXT_FMT" SHOULD NOT GO HERE (%s:%u)\n",
// PROTOCOL_RLC_UM_CTXT_ARGS(ctxt_pP, rlc_pP),
// __FILE__,
// __LINE__);
//rlc_pP->stat_rx_data_pdu_dropped += 1;
rlc_pP
->
stat_rx_data_bytes_dropped
+=
size
;
}
...
...
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