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
8302a060
Commit
8302a060
authored
Feb 02, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RRC transactions: mark UE Capability transaction
parent
62200cde
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
10 deletions
+11
-10
openair2/RRC/NR/nr_rrc_defs.h
openair2/RRC/NR/nr_rrc_defs.h
+2
-1
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+9
-9
No files found.
openair2/RRC/NR/nr_rrc_defs.h
View file @
8302a060
...
...
@@ -233,7 +233,8 @@ typedef enum {
RRC_DEDICATED_RECONF
,
RRC_PDUSESSION_ESTABLISH
,
RRC_PDUSESSION_MODIFY
,
RRC_PDUSESSION_RELEASE
RRC_PDUSESSION_RELEASE
,
RRC_UECAPABILITY_ENQUIRY
,
}
rrc_action_t
;
typedef
struct
gNB_RRC_UE_s
{
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
8302a060
...
...
@@ -1231,6 +1231,10 @@ static int handle_ueCapabilityInformation(const protocol_ctxt_t *const ctxt_pP,
AssertFatal
(
ue_context_p
!=
NULL
,
"Processing %s() for UE %lx, ue_context_p is NULL
\n
"
,
__func__
,
ctxt_pP
->
rntiMaybeUEid
);
gNB_RRC_UE_t
*
UE
=
&
ue_context_p
->
ue_context
;
int
xid
=
ue_cap_info
->
rrc_TransactionIdentifier
;
DevAssert
(
UE
->
xids
[
xid
]
==
RRC_UECAPABILITY_ENQUIRY
);
UE
->
xids
[
xid
]
=
RRC_ACTION_NONE
;
LOG_I
(
NR_RRC
,
"got UE capabilities for UE %lx
\n
"
,
ctxt_pP
->
rntiMaybeUEid
);
int
eutra_index
=
-
1
;
...
...
@@ -2471,19 +2475,15 @@ rrc_gNB_generate_UECapabilityEnquiry(
uint8_t
size
;
T
(
T_ENB_RRC_UE_CAPABILITY_ENQUIRY
,
T_INT
(
ctxt_pP
->
module_id
),
T_INT
(
ctxt_pP
->
frame
),
T_INT
(
ctxt_pP
->
subframe
),
T_INT
(
ctxt_pP
->
rntiMaybeUEid
));
size
=
do_NR_SA_UECapabilityEnquiry
(
ctxt_pP
,
buffer
,
rrc_gNB_get_next_transaction_identifier
(
ctxt_pP
->
module_id
));
LOG_I
(
NR_RRC
,
PROTOCOL_NR_RRC_CTXT_UE_FMT
" Logical Channel DL-DCCH, Generate NR UECapabilityEnquiry (bytes %d)
\n
"
,
PROTOCOL_NR_RRC_CTXT_UE_ARGS
(
ctxt_pP
),
size
);
gNB_RRC_UE_t
*
ue
=
&
ue_context_pP
->
ue_context
;
uint8_t
xid
=
rrc_gNB_get_next_transaction_identifier
(
ctxt_pP
->
module_id
);
ue
->
xids
[
xid
]
=
RRC_UECAPABILITY_ENQUIRY
;
size
=
do_NR_SA_UECapabilityEnquiry
(
ctxt_pP
,
buffer
,
xid
);
LOG_I
(
NR_RRC
,
"UE %d: Logical Channel DL-DCCH, Generate NR UECapabilityEnquiry (bytes %d)
\n
"
,
ue
->
rrc_ue_id
,
size
);
gNB_RRC_INST
*
rrc
=
RC
.
nrrrc
[
ctxt_pP
->
module_id
];
AssertFatal
(
!
NODE_IS_DU
(
rrc
->
node_type
),
"illegal node type DU!
\n
"
);
const
gNB_RRC_UE_t
*
ue
=
&
ue_context_pP
->
ue_context
;
nr_rrc_transfer_protected_rrc_message
(
rrc
,
ue
,
DCCH
,
buffer
,
size
);
}
...
...
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