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
a6636544
Commit
a6636544
authored
Feb 10, 2016
by
Xenofon Foukas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch to get tx_queue size from RLC for the LCs of a UE
parent
8aff18ae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
5 deletions
+12
-5
openair2/ENB_APP/enb_agent_common.c
openair2/ENB_APP/enb_agent_common.c
+7
-0
openair2/ENB_APP/enb_agent_common.h
openair2/ENB_APP/enb_agent_common.h
+1
-1
openair2/ENB_APP/enb_agent_mac.c
openair2/ENB_APP/enb_agent_mac.c
+4
-4
No files found.
openair2/ENB_APP/enb_agent_common.c
View file @
a6636544
...
@@ -393,6 +393,13 @@ int get_ue_wcqi (mid_t mod_id, mid_t ue_id) {
...
@@ -393,6 +393,13 @@ int get_ue_wcqi (mid_t mod_id, mid_t ue_id) {
return
((
UE_list_t
*
)
enb_ue
[
mod_id
])
->
eNB_UE_stats
[
UE_PCCID
(
mod_id
,
ue_id
)][
ue_id
].
dl_cqi
;
return
((
UE_list_t
*
)
enb_ue
[
mod_id
])
->
eNB_UE_stats
[
UE_PCCID
(
mod_id
,
ue_id
)][
ue_id
].
dl_cqi
;
}
}
int
get_tx_queue_size
(
mid_t
mod_id
,
mid_t
ue_id
,
logical_chan_id_t
channel_id
)
{
rnti_t
rnti
=
get_ue_crnti
(
mod_id
,
ue_id
);
uint16_t
frame
=
(
uint16_t
)
get_current_frame
(
mod_id
);
mac_rlc_status_resp_t
rlc_status
=
mac_rlc_status_ind
(
mod_id
,
rnti
,
mod_id
,
frame
,
ENB_FLAG_YES
,
MBMS_FLAG_NO
,
channel_id
,
0
);
return
rlc_status
.
bytes_in_buffer
;
}
/*
/*
* timer primitives
* timer primitives
*/
*/
...
...
openair2/ENB_APP/enb_agent_common.h
View file @
a6636544
...
@@ -148,7 +148,7 @@ int get_ue_phr (mid_t mod_id, mid_t ue_id);
...
@@ -148,7 +148,7 @@ int get_ue_phr (mid_t mod_id, mid_t ue_id);
int
get_ue_wcqi
(
mid_t
mod_id
,
mid_t
ue_id
);
int
get_ue_wcqi
(
mid_t
mod_id
,
mid_t
ue_id
);
int
get_tx_queue_size
(
mid_t
mod_id
,
mid_t
ue_id
,
logical_chan_id_t
channel_id
);
...
...
openair2/ENB_APP/enb_agent_mac.c
View file @
a6636544
...
@@ -413,9 +413,9 @@ int enb_agent_mac_stats_reply(mid_t mod_id,
...
@@ -413,9 +413,9 @@ int enb_agent_mac_stats_reply(mid_t mod_id,
/* Check flag for creation of RLC buffer status report */
/* Check flag for creation of RLC buffer status report */
if
(
report_config
->
ue_report_type
[
i
].
ue_report_flags
&
PROTOCOL__PRP_UE_STATS_TYPE__PRUST_RLC_BS
)
{
if
(
report_config
->
ue_report_type
[
i
].
ue_report_flags
&
PROTOCOL__PRP_UE_STATS_TYPE__PRUST_RLC_BS
)
{
// TODO: Fill in the actual RLC buffer status reports
// TODO: Fill in the actual RLC buffer status reports
ue_report
[
i
]
->
n_rlc_report
=
1
;
// Set this to the number of LCs for this UE
ue_report
[
i
]
->
n_rlc_report
=
3
;
// Set this to the number of LCs for this UE
Protocol__PrpRlcBsr
**
rlc_reports
;
Protocol__PrpRlcBsr
**
rlc_reports
;
rlc_reports
=
malloc
(
sizeof
(
Protocol__PrpRlcBsr
)
*
ue_report
[
i
]
->
n_rlc_report
);
rlc_reports
=
malloc
(
sizeof
(
Protocol__PrpRlcBsr
*
)
*
ue_report
[
i
]
->
n_rlc_report
);
if
(
rlc_reports
==
NULL
)
if
(
rlc_reports
==
NULL
)
goto
error
;
goto
error
;
...
@@ -427,10 +427,10 @@ int enb_agent_mac_stats_reply(mid_t mod_id,
...
@@ -427,10 +427,10 @@ int enb_agent_mac_stats_reply(mid_t mod_id,
goto
error
;
goto
error
;
protocol__prp_rlc_bsr__init
(
rlc_reports
[
j
]);
protocol__prp_rlc_bsr__init
(
rlc_reports
[
j
]);
//TODO:Set logical channel id
//TODO:Set logical channel id
rlc_reports
[
j
]
->
lc_id
=
1
;
rlc_reports
[
j
]
->
lc_id
=
j
+
1
;
rlc_reports
[
j
]
->
has_lc_id
=
1
;
rlc_reports
[
j
]
->
has_lc_id
=
1
;
//TODO:Set tx queue size in bytes
//TODO:Set tx queue size in bytes
rlc_reports
[
j
]
->
tx_queue_size
=
10
;
rlc_reports
[
j
]
->
tx_queue_size
=
get_tx_queue_size
(
enb_id
,
i
,
j
+
1
)
;
rlc_reports
[
j
]
->
has_tx_queue_size
=
1
;
rlc_reports
[
j
]
->
has_tx_queue_size
=
1
;
//TODO:Set tx queue head of line delay in ms
//TODO:Set tx queue head of line delay in ms
rlc_reports
[
j
]
->
tx_queue_hol_delay
=
100
;
rlc_reports
[
j
]
->
tx_queue_hol_delay
=
100
;
...
...
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