Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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 UE
Commits
427e3b1c
Commit
427e3b1c
authored
Sep 13, 2021
by
Laurent THOMAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
F1-U ping first full user plane ping working
parent
07bdbf43
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
openair3/ocp-gtpu/gtp_itf.cpp
openair3/ocp-gtpu/gtp_itf.cpp
+4
-3
No files found.
openair3/ocp-gtpu/gtp_itf.cpp
View file @
427e3b1c
...
@@ -182,7 +182,7 @@ static void gtpv1uSend(instance_t instance, gtpv1u_enb_tunnel_data_req_t *req, b
...
@@ -182,7 +182,7 @@ static void gtpv1uSend(instance_t instance, gtpv1u_enb_tunnel_data_req_t *req, b
if
(
npduNumFlag
)
if
(
npduNumFlag
)
ptr
[
rab_id
].
npduNum
++
;
ptr
[
rab_id
].
npduNum
++
;
// We will release the lock, let's copy data before
ocp_gtpv1u_bearer_t
tmp
=
ptr
[
rab_id
];
ocp_gtpv1u_bearer_t
tmp
=
ptr
[
rab_id
];
pthread_mutex_unlock
(
&
globGtp
.
gtp_lock
);
pthread_mutex_unlock
(
&
globGtp
.
gtp_lock
);
gtpv1uCreateAndSendMsg
(
compatInst
(
instance
),
gtpv1uCreateAndSendMsg
(
compatInst
(
instance
),
...
@@ -396,8 +396,9 @@ void GtpuUpdateTunnelOutgoingTeid(instance_t instance, rnti_t rnti, ebi_t bearer
...
@@ -396,8 +396,9 @@ void GtpuUpdateTunnelOutgoingTeid(instance_t instance, rnti_t rnti, ebi_t bearer
pthread_mutex_unlock
(
&
globGtp
.
gtp_lock
);
pthread_mutex_unlock
(
&
globGtp
.
gtp_lock
);
return
;
return
;
}
}
auto
tmp
=
ptrRnti
->
second
.
bearers
;
auto
tmp
=&
ptrRnti
->
second
.
bearers
;
auto
ptrBearer
=
tmp
.
find
(
bearer_id
);
if
(
ptrBearer
==
tmp
.
end
()
)
{
auto
ptrBearer
=
tmp
->
find
(
bearer_id
);
if
(
ptrBearer
==
tmp
->
end
()
)
{
LOG_E
(
GTPU
,
"Update tunnel for a existing rnti %x, but wrong bearer_id %u
\n
"
,
rnti
,
bearer_id
);
LOG_E
(
GTPU
,
"Update tunnel for a existing rnti %x, but wrong bearer_id %u
\n
"
,
rnti
,
bearer_id
);
pthread_mutex_unlock
(
&
globGtp
.
gtp_lock
);
pthread_mutex_unlock
(
&
globGtp
.
gtp_lock
);
return
;
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