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
ef088e3a
Commit
ef088e3a
authored
Jul 21, 2022
by
Siddharth Rana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added changes to get correct xid
parent
4c435151
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
common/ran_context.h
common/ran_context.h
+2
-1
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+9
-1
No files found.
common/ran_context.h
View file @
ef088e3a
...
...
@@ -123,7 +123,8 @@ typedef struct {
pthread_cond_t
ru_cond
;
/// SS Config variables
struct
ss_config_s
ss
;
// Variable to store Transaction ID for SS in case of RRCReconfiguration
long
rrc_Transaction_Identifier
;
RBConfig
RB_Config
[
MAX_RBS
];
}
RAN_CONTEXT_t
;
...
...
openair2/RRC/LTE/rrc_eNB.c
View file @
ef088e3a
...
...
@@ -3104,7 +3104,14 @@ void rrc_eNB_generate_defaultRRCConnectionReconfiguration(const protocol_ctxt_t
(
void
)
dedicatedInfoNas
;
LTE_C_RNTI_t
*
cba_RNTI
=
NULL
;
int
measurements_enabled
;
uint8_t
xid
=
rrc_eNB_get_next_transaction_identifier
(
ctxt_pP
->
module_id
);
//Transaction_id,
uint8_t
xid
;
if
(
RC
.
ss
.
mode
==
SS_SOFTMODEM
)
{
xid
=
RC
.
rrc_Transaction_Identifier
;
//Transaction_id,
}
else
{
xid
=
rrc_eNB_get_next_transaction_identifier
(
ctxt_pP
->
module_id
);
//Transaction_id,
}
uint8_t
cc_id
=
ue_context_pP
->
ue_context
.
primaryCC_id
;
LTE_UE_EUTRA_Capability_t
*
UEcap
=
ue_context_pP
->
ue_context
.
UE_Capability
;
T
(
T_ENB_RRC_CONNECTION_RECONFIGURATION
,
...
...
@@ -10357,6 +10364,7 @@ void *rrc_enb_process_itti_msg(void *notUsed) {
{
struct
rrc_eNB_ue_context_s
*
ue_context_p
=
NULL
;
ue_context_p
=
rrc_eNB_get_ue_context
(
RC
.
rrc
[
instance
],
SS_RRC_PDU_REQ
(
msg_p
).
rnti
);
RC
.
rrc_Transaction_Identifier
=
dl_dcch_msg
->
message
.
choice
.
c1
.
choice
.
rrcConnectionReconfiguration
.
rrc_TransactionIdentifier
;
LOG_A
(
RRC
,
"[eNB %d] SRB2 Received SDU for CCCH on SRB %ld rnti %d
\n
"
,
instance
,
SS_RRC_PDU_REQ
(
msg_p
).
rnti
);
if
(
ue_context_p
&&
ue_context_p
->
ue_context
.
UE_Capability
==
NULL
)
{
...
...
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