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
zzha zzha
OpenXG-RAN
Commits
8c55ccc9
Commit
8c55ccc9
authored
Sep 22, 2021
by
Laurent THOMAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a critical bug introduced by F1-U in 4G
parent
32ebb876
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
24 deletions
+26
-24
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
+1
-1
openair2/LAYER2/rlc_v2/rlc_oai_api.c
openair2/LAYER2/rlc_v2/rlc_oai_api.c
+25
-23
No files found.
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
View file @
8c55ccc9
...
...
@@ -1546,7 +1546,7 @@ void pdcp_add_UE(const protocol_ctxt_t *const ctxt_pP) {
pdcp_enb
[
ctxt_pP
->
module_id
].
rnti
[
i
]
=
ctxt_pP
->
rnti
;
pdcp_enb
[
ctxt_pP
->
module_id
].
uid
[
i
]
=
i
;
pdcp_enb
[
ctxt_pP
->
module_id
].
num_ues
++
;
printf
(
"add new uid is %d %x
\n
\n
"
,
i
,
ctxt_pP
->
rnti
);
LOG_I
(
PDCP
,
"add new uid is %d %x
\n
"
,
i
,
ctxt_pP
->
rnti
);
pdcp_init_stats_UE
(
ctxt_pP
->
module_id
,
i
);
// ret=1;
break
;
...
...
openair2/LAYER2/rlc_v2/rlc_oai_api.c
View file @
8c55ccc9
...
...
@@ -418,29 +418,31 @@ rb_found:
AssertFatal
(
type
!=
ngran_eNB_CU
&&
type
!=
ngran_ng_eNB_CU
&&
type
!=
ngran_gNB_CU
,
"Can't be CU, bad node type %d
\n
"
,
type
);
if
(
NODE_IS_DU
(
type
)
&&
is_srb
==
1
)
{
MessageDef
*
msg
=
itti_alloc_new_message_sized
(
TASK_RLC_ENB
,
0
,
F1AP_UL_RRC_MESSAGE
,
sizeof
(
*
msg
)
+
size
);
F1AP_UL_RRC_MESSAGE
(
msg
).
rrc_container
=
(
uint8_t
*
)(
msg
+
1
);
memcpy
(
F1AP_UL_RRC_MESSAGE
(
msg
).
rrc_container
,
buf
,
size
);
F1AP_UL_RRC_MESSAGE
(
msg
).
rnti
=
ue
->
rnti
;
F1AP_UL_RRC_MESSAGE
(
msg
).
srb_id
=
rb_id
;
F1AP_UL_RRC_MESSAGE
(
msg
).
rrc_container_length
=
size
;
itti_send_msg_to_task
(
TASK_DU_F1
,
ENB_MODULE_ID_TO_INSTANCE
(
0
/*ctxt_pP->module_id*/
),
msg
);
return
;
}
else
{
// Fixme: very dirty workaround of incomplete F1-U implementation
instance_t
DUuniqInstance
=
0
;
MessageDef
*
msg
=
itti_alloc_new_message
(
TASK_RLC_ENB
,
0
,
GTPV1U_ENB_TUNNEL_DATA_REQ
);
gtpv1u_enb_tunnel_data_req_t
*
req
=&
GTPV1U_ENB_TUNNEL_DATA_REQ
(
msg
);
req
->
buffer
=
malloc
(
size
);
memcpy
(
req
->
buffer
,
buf
,
size
);
req
->
length
=
size
;
req
->
offset
=
0
;
req
->
rnti
=
ue
->
rnti
;
req
->
rab_id
=
rb_id
+
4
;
LOG_D
(
RLC
,
"Received uplink user-plane traffic at RLC-DU to be sent to the CU, size %d
\n
"
,
size
);
itti_send_msg_to_task
(
OCP_GTPV1_U
,
DUuniqInstance
,
msg
);
return
;
if
(
NODE_IS_DU
(
type
))
{
if
(
is_srb
==
1
)
{
MessageDef
*
msg
=
itti_alloc_new_message_sized
(
TASK_RLC_ENB
,
0
,
F1AP_UL_RRC_MESSAGE
,
sizeof
(
*
msg
)
+
size
);
F1AP_UL_RRC_MESSAGE
(
msg
).
rrc_container
=
(
uint8_t
*
)(
msg
+
1
);
memcpy
(
F1AP_UL_RRC_MESSAGE
(
msg
).
rrc_container
,
buf
,
size
);
F1AP_UL_RRC_MESSAGE
(
msg
).
rnti
=
ue
->
rnti
;
F1AP_UL_RRC_MESSAGE
(
msg
).
srb_id
=
rb_id
;
F1AP_UL_RRC_MESSAGE
(
msg
).
rrc_container_length
=
size
;
itti_send_msg_to_task
(
TASK_DU_F1
,
ENB_MODULE_ID_TO_INSTANCE
(
0
/*ctxt_pP->module_id*/
),
msg
);
return
;
}
else
{
// Fixme: very dirty workaround of incomplete F1-U implementation
instance_t
DUuniqInstance
=
0
;
MessageDef
*
msg
=
itti_alloc_new_message
(
TASK_RLC_ENB
,
0
,
GTPV1U_ENB_TUNNEL_DATA_REQ
);
gtpv1u_enb_tunnel_data_req_t
*
req
=&
GTPV1U_ENB_TUNNEL_DATA_REQ
(
msg
);
req
->
buffer
=
malloc
(
size
);
memcpy
(
req
->
buffer
,
buf
,
size
);
req
->
length
=
size
;
req
->
offset
=
0
;
req
->
rnti
=
ue
->
rnti
;
req
->
rab_id
=
rb_id
+
4
;
LOG_D
(
RLC
,
"Received uplink user-plane traffic at RLC-DU to be sent to the CU, size %d
\n
"
,
size
);
itti_send_msg_to_task
(
OCP_GTPV1_U
,
DUuniqInstance
,
msg
);
return
;
}
}
}
...
...
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