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
ZhouShuya
OpenXG-RAN
Commits
ab451412
Commit
ab451412
authored
Jul 02, 2018
by
Haruki NAOI
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: pdcp_update_stats() function stalls when eNB is compiled with "--mu" options.
parent
9696e229
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
openair2/ENB_APP/flexran_agent_defs.h
openair2/ENB_APP/flexran_agent_defs.h
+1
-1
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
+1
-1
openair2/RRC/LTE/rrc_eNB_S1AP.c
openair2/RRC/LTE/rrc_eNB_S1AP.c
+1
-1
No files found.
openair2/ENB_APP/flexran_agent_defs.h
View file @
ab451412
...
...
@@ -102,7 +102,7 @@ typedef enum {
}
ran_name_t
;
typedef
uint8_t
xid_t
;
typedef
uint
8
_t
mid_t
;
// module or enb id
typedef
uint
16
_t
mid_t
;
// module or enb id
typedef
uint8_t
lcid_t
;
typedef
int32_t
err_code_t
;
...
...
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
View file @
ab451412
...
...
@@ -866,7 +866,7 @@ pdcp_data_ind(
void
pdcp_update_stats
(
const
protocol_ctxt_t
*
const
ctxt_pP
){
uint
8_t
pdcp_uid
=
0
;
uint
16_t
pdcp_uid
=
0
;
uint8_t
rb_id
=
0
;
// these stats are measured for both eNB and UE on per seond basis
...
...
openair2/RRC/LTE/rrc_eNB_S1AP.c
View file @
ab451412
...
...
@@ -1994,7 +1994,7 @@ int rrc_eNB_process_PAGING_IND(MessageDef *msg_p, const char *msg_name, instance
/* insert data to UE_PF_PO or update data in UE_PF_PO */
pthread_mutex_lock
(
&
ue_pf_po_mutex
);
uint
8
_t
i
=
0
;
uint
16
_t
i
=
0
;
for
(
i
=
0
;
i
<
MAX_MOBILES_PER_ENB
;
i
++
)
{
if
((
UE_PF_PO
[
CC_id
][
i
].
enable_flag
==
TRUE
&&
UE_PF_PO
[
CC_id
][
i
].
ue_index_value
==
(
uint16_t
)(
S1AP_PAGING_IND
(
msg_p
).
ue_index_value
))
||
(
UE_PF_PO
[
CC_id
][
i
].
enable_flag
!=
TRUE
))
{
...
...
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