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
d2f456e0
Commit
d2f456e0
authored
Aug 08, 2022
by
Cedric Roux
Committed by
Raymond Knopp
Nov 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix: call nr_rlc_get_available_tx_space() with lcid, not rb id
parent
d4356efc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+1
-1
openair3/ocp-gtpu/gtp_itf.cpp
openair3/ocp-gtpu/gtp_itf.cpp
+1
-1
No files found.
openair2/RRC/NR/rrc_gNB.c
View file @
d2f456e0
...
...
@@ -3456,7 +3456,7 @@ static void rrc_DU_process_ue_context_modification_request(MessageDef *msg_p, co
LOG_I
(
NR_RRC
,
"Send first DDD buffer status reporting towards the CU through an ITTI message to gtp-u
\n
"
);
uint8_t
drb_id
=
ue_context_p
->
ue_context
.
DRB_configList
->
list
.
array
[
0
]
->
drb_Identity
;
rnti_t
rnti
=
ue_context_p
->
ue_context
.
rnti
;
int
rlc_tx_buffer_space
=
nr_rlc_get_available_tx_space
(
rnti
,
drb_id
);
int
rlc_tx_buffer_space
=
nr_rlc_get_available_tx_space
(
rnti
,
drb_id
+
3
);
LOG_I
(
NR_RRC
,
"Reported in DDD drb_id:%d, rnti:%d
\n
"
,
drb_id
,
rnti
);
MessageDef
*
msg
=
itti_alloc_new_message_sized
(
TASK_RRC_GNB
,
0
,
GTPV1U_DU_BUFFER_REPORT_REQ
,
sizeof
(
gtpv1u_gnb_tunnel_data_req_t
));
...
...
openair3/ocp-gtpu/gtp_itf.cpp
View file @
d2f456e0
...
...
@@ -1115,7 +1115,7 @@ static int Gtpv1uHandleGpdu(int h,
if
(
NR_PDCP_PDU_SN
>
0
&&
NR_PDCP_PDU_SN
%
5
==
0
){
LOG_D
(
GTPU
,
"Create and send DL DATA Delivery status for the previously received PDU, NR_PDCP_PDU_SN: %u
\n
"
,
NR_PDCP_PDU_SN
);
int
rlc_tx_buffer_space
=
nr_rlc_get_available_tx_space
(
ctxt
.
rnti
,
rb_id
);
int
rlc_tx_buffer_space
=
nr_rlc_get_available_tx_space
(
ctxt
.
rnti
,
rb_id
+
3
);
LOG_D
(
GTPU
,
"Available buffer size in RLC for Tx: %d
\n
"
,
rlc_tx_buffer_space
);
/*Total size of DDD_status PDU = 1 octet to report extension header length
* size of mandatory part + 3 octets for highest transmitted/delivered PDCP SN
...
...
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