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
d937e6e2
Commit
d937e6e2
authored
Feb 01, 2022
by
Masayuki Harada
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some problems.
parent
9cd14735
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
9 deletions
+5
-9
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+1
-3
openair2/RRC/NR/rrc_gNB_NGAP.c
openair2/RRC/NR/rrc_gNB_NGAP.c
+3
-5
openair2/RRC/NR/rrc_gNB_NGAP.h
openair2/RRC/NR/rrc_gNB_NGAP.h
+1
-1
No files found.
openair2/RRC/NR/rrc_gNB.c
View file @
d937e6e2
...
...
@@ -1081,7 +1081,7 @@ rrc_gNB_generate_dedicatedRRCReconfiguration(
}
//-----------------------------------------------------------------------------
int
void
rrc_gNB_modify_dedicatedRRCReconfiguration
(
const
protocol_ctxt_t
*
const
ctxt_pP
,
rrc_gNB_ue_context_t
*
ue_context_pP
)
...
...
@@ -1258,8 +1258,6 @@ rrc_gNB_modify_dedicatedRRCReconfiguration(
buffer
,
PDCP_TRANSMISSION_MODE_CONTROL
);
#endif
return
0
;
}
//-----------------------------------------------------------------------------
...
...
openair2/RRC/NR/rrc_gNB_NGAP.c
View file @
d937e6e2
...
...
@@ -1156,7 +1156,7 @@ rrc_gNB_process_NGAP_PDUSESSION_MODIFY_REQ(
continue
;
}
//Check
same PDU session ID to handle multiple pdu session id
//Check
if same PDU session ID to handle multiple pdu sessions
for
(
j
=
i
+
1
;
j
<
nb_pdusessions_tomodify
;
j
++
)
{
if
(
is_treated
[
j
]
==
FALSE
&&
NGAP_PDUSESSION_MODIFY_REQ
(
msg_p
).
pdusession_modify_params
[
j
].
pdusession_id
==
...
...
@@ -1240,9 +1240,7 @@ rrc_gNB_process_NGAP_PDUSESSION_MODIFY_REQ(
if
(
ue_context_p
->
ue_context
.
nb_of_failed_pdusessions
<
ue_context_p
->
ue_context
.
nb_of_modify_pdusessions
)
{
LOG_D
(
NR_RRC
,
"generate RRCReconfiguration
\n
"
);
if
(
0
==
rrc_gNB_modify_dedicatedRRCReconfiguration
(
&
ctxt
,
ue_context_p
))
{
return
(
0
);
}
rrc_gNB_modify_dedicatedRRCReconfiguration
(
&
ctxt
,
ue_context_p
);
}
else
{
// all pdu modification failed
LOG_I
(
NR_RRC
,
"pdu session modify failed, fill NGAP_PDUSESSION_MODIFY_RESP with the pdu session information that failed to modify
\n
"
);
uint8_t
nb_of_pdu_sessions_failed
=
0
;
...
...
@@ -1354,7 +1352,7 @@ rrc_gNB_send_NGAP_PDUSESSION_MODIFY_RESP(
pdu_sessions_failed
++
;
}
}
else
{
LOG_D
(
NR_RRC
,
"xid does not correspond
s
(context pdu session index %d, status %d, xid %d/%d)
\n
"
,
LOG_D
(
NR_RRC
,
"xid does not correspond (context pdu session index %d, status %d, xid %d/%d)
\n
"
,
i
,
ue_context_pP
->
ue_context
.
modify_pdusession
[
i
].
status
,
xid
,
ue_context_pP
->
ue_context
.
modify_pdusession
[
i
].
xid
);
}
}
...
...
openair2/RRC/NR/rrc_gNB_NGAP.h
View file @
d937e6e2
...
...
@@ -122,7 +122,7 @@ rrc_gNB_send_NGAP_PDUSESSION_MODIFY_RESP(
uint8_t
xid
);
int
void
rrc_gNB_modify_dedicatedRRCReconfiguration
(
const
protocol_ctxt_t
*
const
ctxt_pP
,
rrc_gNB_ue_context_t
*
ue_context_pP
...
...
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