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
Michael Black
OpenXG-RAN
Commits
2b2c471c
Commit
2b2c471c
authored
May 30, 2023
by
luis_pereira87
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not reset DRB_configList because we are only filling it with nb_drb_to_setup
parent
c70f0a1d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+1
-4
No files found.
openair2/RRC/NR/rrc_gNB.c
View file @
2b2c471c
...
...
@@ -595,12 +595,9 @@ void fill_DRB_configList(const protocol_ctxt_t *const ctxt_pP, rrc_gNB_ue_contex
if
(
!
ue_p
->
DRB_configList
)
ue_p
->
DRB_configList
=
CALLOC
(
1
,
sizeof
(
*
ue_p
->
DRB_configList
));
else
memset
(
ue_p
->
DRB_configList
,
0
,
sizeof
(
*
ue_p
->
DRB_configList
));
if
(
!
ue_p
->
DRB_configList2
[
xid
])
ue_p
->
DRB_configList2
[
xid
]
=
CALLOC
(
1
,
sizeof
(
**
ue_p
->
DRB_configList2
));
else
memset
(
ue_p
->
DRB_configList2
[
xid
],
0
,
sizeof
(
**
ue_p
->
DRB_configList2
));
for
(
i
=
0
;
i
<
ue_p
->
nb_of_pdusessions
;
i
++
)
{
if
(
ue_p
->
pduSession
[
i
].
status
>=
PDU_SESSION_STATUS_DONE
)
{
continue
;
...
...
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