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
alex037yang
OpenXG-RAN
Commits
832ecfb4
Commit
832ecfb4
authored
Jun 23, 2016
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update enb.c to include MAC PDU/SDU with full buffer logs
parent
6445cc95
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
common/utils/T/tracer/enb.c
common/utils/T/tracer/enb.c
+6
-0
No files found.
common/utils/T/tracer/enb.c
View file @
832ecfb4
...
@@ -509,7 +509,9 @@ int main(int n, char **v)
...
@@ -509,7 +509,9 @@ int main(int n, char **v)
view_add_log
(
eg
.
macview
,
"ENB_MAC_UE_UL_SCHEDULE_RETRANSMISSION"
,
view_add_log
(
eg
.
macview
,
"ENB_MAC_UE_UL_SCHEDULE_RETRANSMISSION"
,
h
,
database
,
is_on
);
h
,
database
,
is_on
);
view_add_log
(
eg
.
macview
,
"ENB_MAC_UE_UL_PDU"
,
h
,
database
,
is_on
);
view_add_log
(
eg
.
macview
,
"ENB_MAC_UE_UL_PDU"
,
h
,
database
,
is_on
);
view_add_log
(
eg
.
macview
,
"ENB_MAC_UE_UL_PDU_WITH_DATA"
,
h
,
database
,
is_on
);
view_add_log
(
eg
.
macview
,
"ENB_MAC_UE_UL_SDU"
,
h
,
database
,
is_on
);
view_add_log
(
eg
.
macview
,
"ENB_MAC_UE_UL_SDU"
,
h
,
database
,
is_on
);
view_add_log
(
eg
.
macview
,
"ENB_MAC_UE_UL_SDU_WITH_DATA"
,
h
,
database
,
is_on
);
view_add_log
(
eg
.
macview
,
"ENB_MAC_UE_UL_CE"
,
h
,
database
,
is_on
);
view_add_log
(
eg
.
macview
,
"ENB_MAC_UE_UL_CE"
,
h
,
database
,
is_on
);
view_add_log
(
eg
.
rlcview
,
"ENB_RLC_DL"
,
h
,
database
,
is_on
);
view_add_log
(
eg
.
rlcview
,
"ENB_RLC_DL"
,
h
,
database
,
is_on
);
...
@@ -577,6 +579,10 @@ int main(int n, char **v)
...
@@ -577,6 +579,10 @@ int main(int n, char **v)
view_add_log
(
eg
.
rrcview
,
"ENB_RRC_UNKNOW_MESSAGE"
,
view_add_log
(
eg
.
rrcview
,
"ENB_RRC_UNKNOW_MESSAGE"
,
h
,
database
,
is_on
);
h
,
database
,
is_on
);
/* deactivate those two by default, they are a bit heavy */
on_off
(
database
,
"ENB_MAC_UE_UL_SDU_WITH_DATA"
,
is_on
,
0
);
on_off
(
database
,
"ENB_MAC_UE_UL_PDU_WITH_DATA"
,
is_on
,
0
);
for
(
i
=
0
;
i
<
on_off_n
;
i
++
)
for
(
i
=
0
;
i
<
on_off_n
;
i
++
)
on_off
(
database
,
on_off_name
[
i
],
is_on
,
on_off_action
[
i
]);
on_off
(
database
,
on_off_name
[
i
],
is_on
,
on_off_action
[
i
]);
...
...
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