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
Michael Black
OpenXG-RAN
Commits
da2873d6
Commit
da2873d6
authored
May 24, 2021
by
Melissa Elkadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating LOG_As for the test script.
parent
2eacb866
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
9 deletions
+21
-9
openair2/RRC/LTE/rrc_UE.c
openair2/RRC/LTE/rrc_UE.c
+16
-5
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+4
-3
openair2/RRC/NR/rrc_gNB_nsa.c
openair2/RRC/NR/rrc_gNB_nsa.c
+1
-1
No files found.
openair2/RRC/LTE/rrc_UE.c
View file @
da2873d6
...
...
@@ -1772,7 +1772,8 @@ rrc_ue_process_nrueCapabilityEnquiry(
xer_fprint
(
stdout
,
&
asn_DEF_LTE_UL_DCCH_Message
,
(
void
*
)
&
ul_dcch_msg
);
}
if
(
enc_rval
.
encoded
>
0
)
{
LOG_A
(
RRC
,
"NR_UECapabilityInformation Encoded %zd bits (%zd bytes)
\n
"
,
enc_rval
.
encoded
,
(
enc_rval
.
encoded
+
7
)
/
8
);
LOG_A
(
RRC
,
"%s: NR_UECapabilityInformation Encoded %zd bits (%zd bytes)
\n
"
,
__FUNCTION__
,
enc_rval
.
encoded
,
(
enc_rval
.
encoded
+
7
)
/
8
);
rrc_data_req_ue
(
ctxt_pP
,
DCCH
,
...
...
@@ -1844,7 +1845,8 @@ rrc_ue_process_ueCapabilityEnquiry(
xer_fprint
(
stdout
,
&
asn_DEF_LTE_UL_DCCH_Message
,
(
void
*
)
&
ul_dcch_msg
);
}
LOG_A
(
RRC
,
"UECapabilityInformation Encoded %zd bits (%zd bytes)
\n
"
,
enc_rval
.
encoded
,(
enc_rval
.
encoded
+
7
)
/
8
);
LOG_A
(
RRC
,
"%s: UECapabilityInformation Encoded %zd bits (%zd bytes)
\n
"
,
__FUNCTION__
,
enc_rval
.
encoded
,(
enc_rval
.
encoded
+
7
)
/
8
);
rrc_data_req_ue
(
ctxt_pP
,
DCCH
,
...
...
@@ -1867,7 +1869,8 @@ rrc_ue_process_ueCapabilityEnquiry(
xer_fprint
(
stdout
,
&
asn_DEF_LTE_UL_DCCH_Message
,
(
void
*
)
&
ul_dcch_msg
);
}
LOG_A
(
RRC
,
"NR_UECapabilityInformation Encoded %zd bits (%zd bytes)
\n
"
,
enc_rval
.
encoded
,(
enc_rval
.
encoded
+
7
)
/
8
);
LOG_A
(
RRC
,
"%s: NR_UECapabilityInformation Encoded %zd bits (%zd bytes)
\n
"
,
__FUNCTION__
,
enc_rval
.
encoded
,(
enc_rval
.
encoded
+
7
)
/
8
);
rrc_data_req_ue
(
ctxt_pP
,
DCCH
,
...
...
@@ -4997,7 +5000,11 @@ void *rrc_ue_task( void *args_p ) {
case
RRC_DCCH_DATA_COPY_IND
:
{
PROTOCOL_CTXT_SET_BY_MODULE_ID
(
&
ctxt
,
RRC_DCCH_DATA_COPY_IND
(
msg_p
).
module_id
,
ENB_FLAG_NO
,
RRC_DCCH_DATA_COPY_IND
(
msg_p
).
rnti
,
RRC_DCCH_DATA_COPY_IND
(
msg_p
).
frame
,
0
,
RRC_DCCH_DATA_COPY_IND
(
msg_p
).
eNB_index
);
PROTOCOL_CTXT_SET_BY_MODULE_ID
(
&
ctxt
,
RRC_DCCH_DATA_COPY_IND
(
msg_p
).
module_id
,
ENB_FLAG_NO
,
RRC_DCCH_DATA_COPY_IND
(
msg_p
).
rnti
,
RRC_DCCH_DATA_COPY_IND
(
msg_p
).
frame
,
0
,
RRC_DCCH_DATA_COPY_IND
(
msg_p
).
eNB_index
);
LOG_I
(
RRC
,
"[UE %d] Received %s. Now calling rrc_ue_process_ueCapabilityEnquiry
\n
"
,
ue_mod_id
,
ITTI_MSG_NAME
(
msg_p
));
rrc_dcch_data_copy_t
*
dl_dcch_buffer
=
(
void
*
)
RRC_DCCH_DATA_COPY_IND
(
msg_p
).
sdu_p
;
...
...
@@ -5014,7 +5021,11 @@ void *rrc_ue_task( void *args_p ) {
case
RRC_NRUE_CAP_INFO_IND
:
{
PROTOCOL_CTXT_SET_BY_MODULE_ID
(
&
ctxt
,
RRC_NRUE_CAP_INFO_IND
(
msg_p
).
module_id
,
ENB_FLAG_NO
,
RRC_NRUE_CAP_INFO_IND
(
msg_p
).
rnti
,
RRC_NRUE_CAP_INFO_IND
(
msg_p
).
frame
,
0
,
RRC_NRUE_CAP_INFO_IND
(
msg_p
).
eNB_index
);
PROTOCOL_CTXT_SET_BY_MODULE_ID
(
&
ctxt
,
RRC_NRUE_CAP_INFO_IND
(
msg_p
).
module_id
,
ENB_FLAG_NO
,
RRC_NRUE_CAP_INFO_IND
(
msg_p
).
rnti
,
RRC_NRUE_CAP_INFO_IND
(
msg_p
).
frame
,
0
,
RRC_NRUE_CAP_INFO_IND
(
msg_p
).
eNB_index
);
LOG_I
(
RRC
,
"[UE %d] Received %s. Now calling rrc_ue_process_nrueCapabilityEnquiry
\n
"
,
ue_mod_id
,
ITTI_MSG_NAME
(
msg_p
));
rrc_nrue_cap_info_t
*
nrue_cap_info
=
(
void
*
)
RRC_NRUE_CAP_INFO_IND
(
msg_p
).
sdu_p
;
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
da2873d6
...
...
@@ -339,8 +339,8 @@ void rrc_gNB_process_AdditionRequestInformation(const module_id_t gnb_mod_idP, x
AssertFatal
(
cg_configinfo
->
criticalExtensions
.
choice
.
c1
->
present
==
NR_CG_ConfigInfo__criticalExtensions__c1_PR_cg_ConfigInfo
,
"ueCapabilityInformation not present
\n
"
);
parse_CG_ConfigInfo
(
rrc
,
cg_configinfo
,
m
);
LOG_A
(
NR_RRC
,
"Successfully parsed CG_ConfigInfo of size %zu bits. (%zu bytes)
\n
"
,
dec_rval
.
consumed
,
(
dec_rval
.
consumed
+
7
/
8
));
LOG_A
(
NR_RRC
,
"
[UE %d]
Successfully parsed CG_ConfigInfo of size %zu bits. (%zu bytes)
\n
"
,
m
->
rnti
,
dec_rval
.
consumed
,
(
dec_rval
.
consumed
+
7
/
8
));
}
...
...
@@ -2435,7 +2435,8 @@ void *rrc_gnb_task(void *args_p) {
break
;
case
X2AP_ENDC_SGNB_RECONF_COMPLETE
:
LOG_A
(
NR_RRC
,
"Handling of reconfiguration complete message at RRC gNB is pending
\n
"
);
LOG_A
(
NR_RRC
,
"[UE %x] Handling of reconfiguration complete message at RRC gNB is pending
\n
"
,
ctxt
.
rnti
);
break
;
case
NGAP_INITIAL_CONTEXT_SETUP_REQ
:
...
...
openair2/RRC/NR/rrc_gNB_nsa.c
View file @
da2873d6
...
...
@@ -124,7 +124,7 @@ void rrc_parse_ue_capabilities(gNB_RRC_INST *rrc, NR_UE_CapabilityRAT_ContainerL
if
(
LOG_DEBUGFLAG
(
DEBUG_ASN1
)
&&
ueCapabilityRAT_Container_MRDC
!=
NULL
)
{
xer_fprint
(
stdout
,
&
asn_DEF_NR_UE_MRDC_Capability
,
ue_context_p
->
ue_context
.
UE_Capability_MRDC
);
}
LOG_A
(
RRC
,
"Successfully decoded UE NR capabilities
(NR and MRDC)
\n
"
);
LOG_A
(
RRC
,
"Successfully decoded UE NR capabilities
for RNTI %d (NR and MRDC)
\n
"
,
ue_context_p
->
ue_id_rnti
);
rrc_add_nsa_user
(
rrc
,
ue_context_p
,
m
);
}
...
...
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