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
spbro
OpenXG-RAN
Commits
33fa06d0
Commit
33fa06d0
authored
Aug 16, 2024
by
Jaroslava Fiedlerova
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/nr-rlc-less-logging' into integration_2024_w33
parents
ba70d91b
5e547c61
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
8 deletions
+35
-8
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c
+1
-3
openair2/LAYER2/nr_rlc/nr_rlc_entity_tm.c
openair2/LAYER2/nr_rlc/nr_rlc_entity_tm.c
+14
-2
openair2/LAYER2/nr_rlc/nr_rlc_entity_tm.h
openair2/LAYER2/nr_rlc/nr_rlc_entity_tm.h
+4
-0
openair2/LAYER2/nr_rlc/nr_rlc_entity_um.c
openair2/LAYER2/nr_rlc/nr_rlc_entity_um.c
+12
-3
openair2/LAYER2/nr_rlc/nr_rlc_entity_um.h
openair2/LAYER2/nr_rlc/nr_rlc_entity_um.h
+4
-0
No files found.
openair2/LAYER2/nr_rlc/nr_rlc_entity_am.c
View file @
33fa06d0
...
...
@@ -1765,9 +1765,7 @@ void nr_rlc_entity_am_recv_sdu(nr_rlc_entity_t *_entity,
/* 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
);
LOG_E
(
RLC
,
"%d SDU rejected, SDU buffer full
\n
"
,
entity
->
sdu_rejected
);
entity
->
sdu_rejected
=
0
;
entity
->
t_log_buffer_full
=
entity
->
t_current
;
}
...
...
openair2/LAYER2/nr_rlc/nr_rlc_entity_tm.c
View file @
33fa06d0
...
...
@@ -136,9 +136,16 @@ void nr_rlc_entity_tm_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
,
"%d SDU rejected, SDU buffer full
\n
"
,
entity
->
sdu_rejected
);
entity
->
sdu_rejected
=
0
;
entity
->
t_log_buffer_full
=
entity
->
t_current
;
}
if
(
entity
->
tx_size
+
size
>
entity
->
tx_maxsize
)
{
LOG_D
(
RLC
,
"%s:%d:%s: warning: SDU rejected, SDU buffer full
\n
"
,
__FILE__
,
__LINE__
,
__FUNCTION__
);
entity
->
sdu_rejected
++
;
entity
->
common
.
stats
.
rxsdu_dd_pkts
++
;
entity
->
common
.
stats
.
rxsdu_dd_bytes
+=
size
;
...
...
@@ -181,6 +188,11 @@ void nr_rlc_entity_tm_discard_sdu(nr_rlc_entity_t *_entity, int sdu_id)
static
void
clear_entity
(
nr_rlc_entity_tm_t
*
entity
)
{
entity
->
t_current
=
0
;
entity
->
t_log_buffer_full
=
0
;
entity
->
sdu_rejected
=
0
;
nr_rlc_free_sdu_segment_list
(
entity
->
tx_list
);
entity
->
tx_list
=
NULL
;
...
...
openair2/LAYER2/nr_rlc/nr_rlc_entity_tm.h
View file @
33fa06d0
...
...
@@ -31,6 +31,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
;
/* tx management */
nr_rlc_sdu_segment_t
*
tx_list
;
nr_rlc_sdu_segment_t
*
tx_end
;
...
...
openair2/LAYER2/nr_rlc/nr_rlc_entity_um.c
View file @
33fa06d0
...
...
@@ -575,9 +575,16 @@ void nr_rlc_entity_um_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
,
"%d SDU rejected, SDU buffer full
\n
"
,
entity
->
sdu_rejected
);
entity
->
sdu_rejected
=
0
;
entity
->
t_log_buffer_full
=
entity
->
t_current
;
}
if
(
entity
->
tx_size
+
size
>
entity
->
tx_maxsize
)
{
LOG_W
(
RLC
,
"%s:%d:%s: warning: SDU rejected, SDU buffer full
\n
"
,
__FILE__
,
__LINE__
,
__FUNCTION__
);
entity
->
sdu_rejected
++
;
entity
->
common
.
stats
.
rxsdu_dd_pkts
++
;
entity
->
common
.
stats
.
rxsdu_dd_bytes
+=
size
;
...
...
@@ -712,11 +719,13 @@ static void clear_entity(nr_rlc_entity_um_t *entity)
entity
->
rx_next_reassembly
=
0
;
entity
->
rx_timer_trigger
=
0
;
entity
->
tx_next
=
0
;
entity
->
t_current
=
0
;
entity
->
t_log_buffer_full
=
0
;
entity
->
sdu_rejected
=
0
;
entity
->
t_reassembly_start
=
0
;
cur_rx
=
entity
->
rx_list
;
...
...
openair2/LAYER2/nr_rlc/nr_rlc_entity_um.h
View file @
33fa06d0
...
...
@@ -47,6 +47,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_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