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
canghaiwuhen
OpenXG-RAN
Commits
65040130
Commit
65040130
authored
Mar 04, 2017
by
fnabet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RLC AM : fix update of vrMS in tReordering expiry
parent
709b1fd2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_reordering.c
openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_reordering.c
+5
-2
No files found.
openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_reordering.c
View file @
65040130
...
@@ -93,9 +93,12 @@ rlc_am_check_timer_reordering(
...
@@ -93,9 +93,12 @@ rlc_am_check_timer_reordering(
}
}
/* Now find a SN for which either no PDU is received or partially received */
/* Now find a SN for which either no PDU is received or partially received */
while
((
cursor
!=
NULL
)
&&
(
pdu_info
->
sn
==
vr_ms_new
)
&&
(((
rlc_am_rx_pdu_management_t
*
)(
cursor
->
data
))
->
all_segments_received
>
0
))
{
while
((
cursor
!=
NULL
)
&&
(
vr_ms_new
!=
rlc_pP
->
vr_h
)
&&
(
pdu_info
->
sn
==
vr_ms_new
)
&&
(((
rlc_am_rx_pdu_management_t
*
)(
cursor
->
data
))
->
all_segments_received
>
0
))
{
cursor
=
cursor
->
next
;
/* Increment vrMS if the PDU is fully received or if this is the last PDU segment */
if
((
pdu_info
->
rf
==
0
)
||
(
pdu_info
->
lsf
==
1
))
{
vr_ms_new
=
RLC_AM_NEXT_SN
(
vr_ms_new
);
vr_ms_new
=
RLC_AM_NEXT_SN
(
vr_ms_new
);
}
cursor
=
cursor
->
next
;
if
(
cursor
!=
NULL
)
{
if
(
cursor
!=
NULL
)
{
pdu_info
=
&
((
rlc_am_rx_pdu_management_t
*
)(
cursor
->
data
))
->
pdu_info
;
pdu_info
=
&
((
rlc_am_rx_pdu_management_t
*
)(
cursor
->
data
))
->
pdu_info
;
}
}
...
...
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