Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Commits
cd4bc84b
Commit
cd4bc84b
authored
2 years ago
by
Karim Boutiba
Browse files
Options
Downloads
Patches
Plain Diff
small fix in nr_sdap_get_entity
parent
7bf5f018
No related branches found
No related tags found
3 merge requests
!1757
Draft: Use pMAX value in configuration file, instead of hardcoded '23' in asn1_msg.c
,
!1576
integration_2022_wk22
,
!1501
fixes to support multiple pdu sessions (tested with 2 pdu sessions)
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openair2/SDAP/nr_sdap/nr_sdap_entity.c
+2
-1
2 additions, 1 deletion
openair2/SDAP/nr_sdap/nr_sdap_entity.c
with
2 additions
and
1 deletion
openair2/SDAP/nr_sdap/nr_sdap_entity.c
+
2
−
1
View file @
cd4bc84b
...
...
@@ -450,7 +450,7 @@ nr_sdap_entity_t *nr_sdap_get_entity(uint16_t rnti, int pdusession_id) {
if
(
sdap_entity
==
NULL
)
return
NULL
;
while
(
sdap_entity
->
rnti
!=
rnti
&&
sdap_entity
->
next_entity
!=
NULL
)
{
while
(
(
sdap_entity
->
rnti
!=
rnti
||
sdap_entity
->
pdusession_id
!=
pdusession_id
)
&&
sdap_entity
->
next_entity
!=
NULL
)
{
sdap_entity
=
sdap_entity
->
next_entity
;
}
...
...
@@ -460,6 +460,7 @@ nr_sdap_entity_t *nr_sdap_get_entity(uint16_t rnti, int pdusession_id) {
return
NULL
;
}
void
delete_nr_sdap_entity
(
uint16_t
rnti
)
{
nr_sdap_entity_t
*
entityPtr
,
*
entityPrev
=
NULL
;
entityPtr
=
sdap_info
.
sdap_entity_llist
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment