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
lizhongxiao
OpenXG-RAN
Commits
62200cde
Commit
62200cde
authored
Feb 02, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RRC transactions: mark "no action"
parent
c643abd8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
openair2/RRC/NR/nr_rrc_defs.h
openair2/RRC/NR/nr_rrc_defs.h
+1
-0
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+6
-1
No files found.
openair2/RRC/NR/nr_rrc_defs.h
View file @
62200cde
...
...
@@ -224,6 +224,7 @@ typedef struct drb_s {
}
drb_t
;
typedef
enum
{
RRC_ACTION_NONE
,
/* no transaction ongoing */
RRC_SETUP
,
RRC_SETUP_FOR_REESTABLISHMENT
,
RRC_REESTABLISH
,
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
62200cde
...
...
@@ -1434,11 +1434,16 @@ static void handle_rrcReconfigurationComplete(const protocol_ctxt_t *const ctxt_
case
RRC_DEDICATED_RECONF
:
/* do nothing */
break
;
case
RRC_ACTION_NONE
:
LOG_E
(
RRC
,
"UE %d: Received RRC Reconfiguration Complete with xid %d while no transaction is ongoing
\n
"
,
UE
->
rrc_ue_id
,
xid
);
successful_reconfig
=
false
;
break
;
default:
LOG_E
(
RRC
,
"
Received unexpected transaction type %d for xid %d
\n
"
,
UE
->
xids
[
xid
],
xid
);
LOG_E
(
RRC
,
"
UE %d: Received unexpected transaction type %d for xid %d
\n
"
,
UE
->
rrc_ue_id
,
UE
->
xids
[
xid
],
xid
);
successful_reconfig
=
false
;
break
;
}
UE
->
xids
[
xid
]
=
RRC_ACTION_NONE
;
gNB_RRC_INST
*
rrc
=
RC
.
nrrrc
[
0
];
f1_ue_data_t
ue_data
=
cu_get_f1_ue_data
(
UE
->
rrc_ue_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