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
67860a97
Commit
67860a97
authored
Sep 03, 2018
by
Y_Tomita
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for C-plane connection failure in 64UEs test.
parent
23f24f75
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
6 deletions
+4
-6
openair2/LAYER2/MAC/eNB_scheduler_RA.c
openair2/LAYER2/MAC/eNB_scheduler_RA.c
+1
-1
openair2/LAYER2/MAC/mac_vars.h
openair2/LAYER2/MAC/mac_vars.h
+1
-1
openair2/RRC/LTE/rrc_vars.h
openair2/RRC/LTE/rrc_vars.h
+1
-1
targets/RT/USER/lte-ue.c
targets/RT/USER/lte-ue.c
+1
-3
No files found.
openair2/LAYER2/MAC/eNB_scheduler_RA.c
View file @
67860a97
...
...
@@ -1168,7 +1168,7 @@ generate_Msg4(module_id_t module_idP, int CC_idP, frame_t frameP,
mac
->
TX_req
[
CC_idP
].
sfn_sf
=
fill_nfapi_tx_req
(
&
mac
->
TX_req
[
CC_idP
].
tx_request_body
,
(
frameP
*
10
)
+
subframeP
,
rrc_sdu_length
,
rrc_sdu_length
+
offset
,
mac
->
pdu_index
[
CC_idP
],
mac
->
UE_list
.
DLSCH_pdu
[
CC_idP
][
0
][(
unsigned
char
)
UE_id
].
payload
[
0
]);
...
...
openair2/LAYER2/MAC/mac_vars.h
View file @
67860a97
...
...
@@ -95,7 +95,7 @@ const uint8_t cqi2fmt2x_agg[MAX_SUPPORTED_BW][CQI_VALUE_RANGE] = {
uint32_t
RRC_CONNECTION_FLAG
;
UE_MAC_INST
*
UE_mac_inst
;
//[NB_MODULE_MAX];
UE_MAC_INST
*
UE_mac_inst
=
NULL
;
//[NB_MODULE_MAX];
MAC_RLC_XFACE
*
Mac_rlc_xface
;
/// Primary component carrier index of eNB
...
...
openair2/RRC/LTE/rrc_vars.h
View file @
67860a97
...
...
@@ -38,7 +38,7 @@
UE_PF_PO_t
UE_PF_PO
[
NFAPI_CC_MAX
][
MAX_MOBILES_PER_ENB
];
pthread_mutex_t
ue_pf_po_mutex
;
UE_RRC_INST
*
UE_rrc_inst
;
UE_RRC_INST
*
UE_rrc_inst
=
NULL
;
#include "LAYER2/MAC/mac_extern.h"
#define MAX_U32 0xFFFFFFFF
...
...
targets/RT/USER/lte-ue.c
View file @
67860a97
...
...
@@ -1042,9 +1042,7 @@ static void *UE_phy_stub_single_thread_rxn_txnp4(void *arg) {
UL_INFO
->
sr_ind
.
sr_indication_body
.
sr_pdu_list
=
(
nfapi_sr_indication_pdu_t
*
)
malloc
(
NB_UE_INST
*
sizeof
(
nfapi_sr_indication_pdu_t
));
UL_INFO
->
sr_ind
.
sr_indication_body
.
number_of_srs
=
0
;
UL_INFO
->
cqi_ind
.
cqi_pdu_list
=
(
nfapi_cqi_indication_pdu_t
*
)
malloc
(
NB_UE_INST
*
sizeof
(
nfapi_cqi_indication_pdu_t
));
UL_INFO
->
cqi_ind
.
cqi_raw_pdu_list
=
(
nfapi_cqi_indication_raw_pdu_t
*
)
malloc
(
NB_UE_INST
*
sizeof
(
nfapi_cqi_indication_raw_pdu_t
));
UL_INFO
->
cqi_ind
.
number_of_cqis
=
0
;
UL_INFO
->
cqi_ind
.
cqi_pdu_list
=
(
nfapi_cqi_indication_pdu_t
*
)
malloc
(
NB_UE_INST
*
sizeof
(
nfapi_cqi_indication_pdu_t
));
UL_INFO
->
cqi_ind
.
cqi_raw_pdu_list
=
(
nfapi_cqi_indication_raw_pdu_t
*
)
malloc
(
NB_UE_INST
*
sizeof
(
nfapi_cqi_indication_raw_pdu_t
));
UL_INFO
->
cqi_ind
.
number_of_cqis
=
0
;
...
...
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