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
e5b4ab23
Commit
e5b4ab23
authored
May 12, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce logging verbosity
parent
cfbeaf68
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
13 deletions
+6
-13
openair2/F1AP/f1ap_common.c
openair2/F1AP/f1ap_common.c
+1
-1
openair2/F1AP/f1ap_du_ue_context_management.c
openair2/F1AP/f1ap_du_ue_context_management.c
+0
-6
openair2/LAYER2/NR_MAC_gNB/mac_rrc_dl_handler.c
openair2/LAYER2/NR_MAC_gNB/mac_rrc_dl_handler.c
+1
-1
openair2/LAYER2/nr_pdcp/nr_pdcp_oai_api.c
openair2/LAYER2/nr_pdcp/nr_pdcp_oai_api.c
+1
-2
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+2
-2
openair2/RRC/NR/rrc_gNB_NGAP.c
openair2/RRC/NR/rrc_gNB_NGAP.c
+1
-1
No files found.
openair2/F1AP/f1ap_common.c
View file @
e5b4ab23
...
...
@@ -180,7 +180,7 @@ int f1ap_du_add_cu_ue_id(instance_t instanceP,
return
-
1
;
f1_inst
->
f1ap_ue
[
f1ap_uid
].
cu_ue_f1ap_id
=
cu_ue_f1ap_id
;
LOG_
I
(
F1AP
,
"Adding cu_ue_f1ap_id %ld for UE with RNTI %x
\n
"
,
cu_ue_f1ap_id
,
f1_inst
->
f1ap_ue
[
f1ap_uid
].
rnti
);
LOG_
D
(
F1AP
,
"Adding cu_ue_f1ap_id %ld for UE with RNTI %x
\n
"
,
cu_ue_f1ap_id
,
f1_inst
->
f1ap_ue
[
f1ap_uid
].
rnti
);
return
0
;
}
...
...
openair2/F1AP/f1ap_du_ue_context_management.c
View file @
e5b4ab23
...
...
@@ -98,8 +98,6 @@ int DU_handle_UE_CONTEXT_SETUP_REQUEST(instance_t instance,
if
(
f1ap_ue_context_setup_req
->
rnti
<
0
)
LOG_E
(
F1AP
,
"Could not retrieve UE rnti based on the CU/DU UE id
\n
"
);
else
LOG_I
(
F1AP
,
"Retrieved rnti is: %d
\n
"
,
f1ap_ue_context_setup_req
->
rnti
);
/* SpCell_ID */
F1AP_UEContextSetupRequestIEs_t
*
ieNet
;
...
...
@@ -695,19 +693,15 @@ int DU_handle_UE_CONTEXT_RELEASE_COMMAND(instance_t instance,
F1AP_ProtocolIE_ID_id_Cause
,
true
);
switch
(
ie
->
value
.
choice
.
Cause
.
present
){
case
F1AP_Cause_PR_radioNetwork
:
LOG_W
(
F1AP
,
"UE context release command cause is due to radioNetwork with specific code: %ld
\n
"
,
ie
->
value
.
choice
.
Cause
.
choice
.
radioNetwork
);
f1ap_ue_context_release_cmd
->
cause
=
F1AP_CAUSE_RADIO_NETWORK
;
break
;
case
F1AP_Cause_PR_transport
:
LOG_W
(
F1AP
,
"UE context release command cause is due to transport with specific code: %ld
\n
"
,
ie
->
value
.
choice
.
Cause
.
choice
.
transport
);
f1ap_ue_context_release_cmd
->
cause
=
F1AP_CAUSE_TRANSPORT
;
break
;
case
F1AP_Cause_PR_protocol
:
LOG_W
(
F1AP
,
"UE context release command cause is due to protocol with specific code: %ld
\n
"
,
ie
->
value
.
choice
.
Cause
.
choice
.
protocol
);
f1ap_ue_context_release_cmd
->
cause
=
F1AP_CAUSE_PROTOCOL
;
break
;
case
F1AP_Cause_PR_misc
:
LOG_W
(
F1AP
,
"UE context release command cause is misc with specific code: %ld
\n
"
,
ie
->
value
.
choice
.
Cause
.
choice
.
misc
);
f1ap_ue_context_release_cmd
->
cause
=
F1AP_CAUSE_MISC
;
break
;
default:
...
...
openair2/LAYER2/NR_MAC_gNB/mac_rrc_dl_handler.c
View file @
e5b4ab23
...
...
@@ -149,7 +149,7 @@ void ue_context_setup_request(const f1ap_ue_context_setup_t *req)
int
dl_rrc_message
(
module_id_t
module_id
,
const
f1ap_dl_rrc_message_t
*
dl_rrc
)
{
LOG_
I
(
NR_MAC
,
"DL RRC Message Transfer with %d bytes for RNTI %04x SRB %d
\n
"
,
dl_rrc
->
rrc_container_length
,
dl_rrc
->
rnti
,
dl_rrc
->
srb_id
);
LOG_
D
(
NR_MAC
,
"DL RRC Message Transfer with %d bytes for RNTI %04x SRB %d
\n
"
,
dl_rrc
->
rrc_container_length
,
dl_rrc
->
rnti
,
dl_rrc
->
srb_id
);
nr_rlc_srb_recv_sdu
(
dl_rrc
->
rnti
,
dl_rrc
->
srb_id
,
dl_rrc
->
rrc_container
,
dl_rrc
->
rrc_container_length
);
return
0
;
...
...
openair2/LAYER2/nr_pdcp/nr_pdcp_oai_api.c
View file @
e5b4ab23
...
...
@@ -675,8 +675,7 @@ static void deliver_pdu_drb(void *deliver_pdu_data, ue_id_t ue_id, int rb_id,
req
->
offset
=
GTPU_HEADER_OVERHEAD_MAX
;
req
->
ue_id
=
ue_id
;
req
->
bearer_id
=
rb_id
;
LOG_I
(
PDCP
,
"%s() (drb %d) sending message to gtp size %d
\n
"
,
__func__
,
rb_id
,
size
);
LOG_D
(
PDCP
,
"%s() (drb %d) sending message to gtp size %d
\n
"
,
__func__
,
rb_id
,
size
);
extern
instance_t
CUuniqInstance
;
itti_send_msg_to_task
(
TASK_GTPV1_U
,
CUuniqInstance
,
message_p
);
}
else
{
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
e5b4ab23
...
...
@@ -2205,9 +2205,9 @@ int rrc_gNB_decode_dcch(const protocol_ctxt_t *const ctxt_pP,
break
;
case
NR_UL_DCCH_MessageType__c1_PR_ulInformationTransfer
:
LOG_
I
(
NR_RRC
,
"Recived RRC GNB UL Information Transfer
\n
"
);
LOG_
D
(
NR_RRC
,
"Recived RRC GNB UL Information Transfer
\n
"
);
if
(
!
ue_context_p
)
{
LOG_
I
(
NR_RRC
,
"Processing ulInformationTransfer UE %lx, ue_context_p is NULL
\n
"
,
ctxt_pP
->
rntiMaybeUEid
);
LOG_
W
(
NR_RRC
,
"Processing ulInformationTransfer UE %lx, ue_context_p is NULL
\n
"
,
ctxt_pP
->
rntiMaybeUEid
);
break
;
}
...
...
openair2/RRC/NR/rrc_gNB_NGAP.c
View file @
e5b4ab23
...
...
@@ -653,7 +653,7 @@ rrc_gNB_send_NGAP_UPLINK_NAS(
// NGAP_UPLINK_NAS (msg_p).nas_pdu.length,
// ue_context_pP);
itti_send_msg_to_task
(
TASK_NGAP
,
ctxt_pP
->
instance
,
msg_p
);
LOG_
I
(
NR_RRC
,
"Send RRC GNB UL Information Transfer
\n
"
);
LOG_
D
(
NR_RRC
,
"Send RRC GNB UL Information Transfer
\n
"
);
}
}
...
...
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