Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
10dbc33e
Commit
10dbc33e
authored
Jun 10, 2016
by
Cedric Roux
Browse files
add RLC traces to the code
parent
d7e072a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
openair2/LAYER2/RLC/rlc.c
View file @
10dbc33e
...
...
@@ -359,6 +359,11 @@ rlc_op_status_t rlc_data_req (const protocol_ctxt_t* const ctxt_pP,
#endif
#if T_TRACER
if
(
ctxt_pP
->
enb_flag
)
T
(
T_ENB_RLC_DL
,
T_INT
(
ctxt_pP
->
module_id
),
T_INT
(
ctxt_pP
->
rnti
),
T_INT
(
rb_idP
),
T_INT
(
sdu_sizeP
));
#endif
if
(
MBMS_flagP
)
{
AssertFatal
(
rb_idP
<
NB_RB_MBMS_MAX
,
"RB id is too high (%u/%d)!
\n
"
,
rb_idP
,
NB_RB_MBMS_MAX
);
}
else
{
...
...
@@ -571,6 +576,12 @@ void rlc_data_ind (
rlc_util_print_hex_octets
(
RLC
,
(
unsigned
char
*
)
sdu_pP
->
data
,
sdu_sizeP
);
#endif
#if T_TRACER
if
(
ctxt_pP
->
enb_flag
)
T
(
T_ENB_RLC_UL
,
T_INT
(
ctxt_pP
->
module_id
),
T_INT
(
ctxt_pP
->
rnti
),
T_INT
(
rb_idP
),
T_INT
(
sdu_sizeP
));
#endif
pdcp_data_ind
(
ctxt_pP
,
srb_flagP
,
...
...
openair2/LAYER2/RLC/rlc_mac.c
View file @
10dbc33e
...
...
@@ -221,6 +221,11 @@ tbs_size_t mac_rlc_data_req(
;
}
#if T_TRACER
if
(
enb_flagP
)
T
(
T_ENB_RLC_MAC_DL
,
T_INT
(
module_idP
),
T_INT
(
rntiP
),
T_INT
(
channel_idP
),
T_INT
(
ret_tb_size
));
#endif
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_MAC_RLC_DATA_REQ
,
VCD_FUNCTION_OUT
);
return
ret_tb_size
;
}
...
...
@@ -276,6 +281,10 @@ void mac_rlc_data_ind (
#endif
#if T_TRACER
if
(
enb_flagP
)
T
(
T_ENB_RLC_MAC_UL
,
T_INT
(
module_idP
),
T_INT
(
rntiP
),
T_INT
(
channel_idP
),
T_INT
(
tb_sizeP
));
#endif
if
(
MBMS_flagP
)
{
if
(
BOOL_NOT
(
enb_flagP
))
{
...
...
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