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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
ee4301b0
Commit
ee4301b0
authored
Oct 24, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/fix-qfi-gtp' into integration_2024_w43 (!3067)
Bugfix: Fill QFI for N3 GTP messages
parents
981f18dd
7c13c790
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
openair2/LAYER2/nr_pdcp/cucp_cuup_handler.c
openair2/LAYER2/nr_pdcp/cucp_cuup_handler.c
+2
-1
No files found.
openair2/LAYER2/nr_pdcp/cucp_cuup_handler.c
View file @
ee4301b0
...
...
@@ -157,6 +157,7 @@ void e1_bearer_context_setup(const e1ap_bearer_setup_req_t *req)
AssertFatal
(
req_pdu
->
numDRB2Setup
==
1
,
"can only handle one DRB per PDU session
\n
"
);
resp_pdu
->
numDRBSetup
=
req_pdu
->
numDRB2Setup
;
const
DRB_nGRAN_to_setup_t
*
req_drb
=
&
req_pdu
->
DRBnGRanList
[
0
];
AssertFatal
(
req_drb
->
numQosFlow2Setup
==
1
,
"can only handle one QoS Flow per DRB
\n
"
);
DRB_nGRAN_setup_t
*
resp_drb
=
&
resp_pdu
->
DRBnGRanList
[
0
];
resp_drb
->
id
=
req_drb
->
id
;
resp_drb
->
numQosFlowSetup
=
req_drb
->
numQosFlow2Setup
;
...
...
@@ -168,7 +169,7 @@ void e1_bearer_context_setup(const e1ap_bearer_setup_req_t *req)
// GTP tunnel for N3/to core
gtpv1u_gnb_create_tunnel_resp_t
resp_n3
=
{
0
};
int
qfi
=
0
;
// put PDU session marker
int
qfi
=
req_drb
->
qosFlows
[
0
].
qfi
;
int
ret
=
drb_gtpu_create
(
n3inst
,
cu_up_ue_id
,
req_drb
->
id
,
...
...
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