Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
OpenXG
OpenXG UE
Commits
24341ca2
Commit
24341ca2
authored
Nov 30, 2021
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nr rlc: reduce "buffer full" log
parent
594a8332
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c
+14
-2
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.h
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.h
+4
-0
No files found.
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c
View file @
24341ca2
...
...
@@ -1596,9 +1596,18 @@ void nr_rlc_entity_am_recv_sdu(nr_rlc_entity_t *_entity,
exit
(
1
);
}
/* log SDUs rejected, at most once per second */
if
(
entity
->
sdu_rejected
!=
0
&&
entity
->
t_current
>
entity
->
t_log_buffer_full
+
1000
)
{
LOG_E
(
RLC
,
"%s:%d:%s: warning: %d SDU rejected, SDU buffer full
\n
"
,
__FILE__
,
__LINE__
,
__FUNCTION__
,
entity
->
sdu_rejected
);
entity
->
sdu_rejected
=
0
;
entity
->
t_log_buffer_full
=
entity
->
t_current
;
}
if
(
entity
->
tx_size
+
size
>
entity
->
tx_maxsize
)
{
LOG_E
(
RLC
,
"%s:%d:%s: warning: SDU rejected, SDU buffer full
\n
"
,
__FILE__
,
__LINE__
,
__FUNCTION__
);
entity
->
sdu_rejected
++
;
return
;
}
...
...
@@ -1827,6 +1836,9 @@ static void clear_entity(nr_rlc_entity_am_t *entity)
entity
->
t_current
=
0
;
entity
->
t_log_buffer_full
=
0
;
entity
->
sdu_rejected
=
0
;
entity
->
t_poll_retransmit_start
=
0
;
entity
->
t_reassembly_start
=
0
;
entity
->
t_status_prohibit_start
=
0
;
...
...
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.h
View file @
24341ca2
...
...
@@ -60,6 +60,10 @@ typedef struct {
/* set to the latest know time by the user of the module. Unit: ms */
uint64_t
t_current
;
/* deal with logging of buffer full */
uint64_t
t_log_buffer_full
;
int
sdu_rejected
;
/* timers (stores the TTI of activation, 0 means not active) */
uint64_t
t_poll_retransmit_start
;
uint64_t
t_reassembly_start
;
...
...
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