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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
543099d5
Commit
543099d5
authored
May 12, 2023
by
Robert Schmidt
Committed by
Makarand kulkarni
Jun 12, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce logging verbosity
parent
096bb2c4
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 @
543099d5
...
@@ -180,7 +180,7 @@ int f1ap_du_add_cu_ue_id(instance_t instanceP,
...
@@ -180,7 +180,7 @@ int f1ap_du_add_cu_ue_id(instance_t instanceP,
return
-
1
;
return
-
1
;
f1_inst
->
f1ap_ue
[
f1ap_uid
].
cu_ue_f1ap_id
=
cu_ue_f1ap_id
;
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
;
return
0
;
}
}
...
...
openair2/F1AP/f1ap_du_ue_context_management.c
View file @
543099d5
...
@@ -98,8 +98,6 @@ int DU_handle_UE_CONTEXT_SETUP_REQUEST(instance_t instance,
...
@@ -98,8 +98,6 @@ int DU_handle_UE_CONTEXT_SETUP_REQUEST(instance_t instance,
if
(
f1ap_ue_context_setup_req
->
rnti
<
0
)
if
(
f1ap_ue_context_setup_req
->
rnti
<
0
)
LOG_E
(
F1AP
,
"Could not retrieve UE rnti based on the CU/DU UE id
\n
"
);
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 */
/* SpCell_ID */
F1AP_UEContextSetupRequestIEs_t
*
ieNet
;
F1AP_UEContextSetupRequestIEs_t
*
ieNet
;
...
@@ -695,19 +693,15 @@ int DU_handle_UE_CONTEXT_RELEASE_COMMAND(instance_t instance,
...
@@ -695,19 +693,15 @@ int DU_handle_UE_CONTEXT_RELEASE_COMMAND(instance_t instance,
F1AP_ProtocolIE_ID_id_Cause
,
true
);
F1AP_ProtocolIE_ID_id_Cause
,
true
);
switch
(
ie
->
value
.
choice
.
Cause
.
present
){
switch
(
ie
->
value
.
choice
.
Cause
.
present
){
case
F1AP_Cause_PR_radioNetwork
:
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
;
f1ap_ue_context_release_cmd
->
cause
=
F1AP_CAUSE_RADIO_NETWORK
;
break
;
break
;
case
F1AP_Cause_PR_transport
:
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
;
f1ap_ue_context_release_cmd
->
cause
=
F1AP_CAUSE_TRANSPORT
;
break
;
break
;
case
F1AP_Cause_PR_protocol
:
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
;
f1ap_ue_context_release_cmd
->
cause
=
F1AP_CAUSE_PROTOCOL
;
break
;
break
;
case
F1AP_Cause_PR_misc
:
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
;
f1ap_ue_context_release_cmd
->
cause
=
F1AP_CAUSE_MISC
;
break
;
break
;
default:
default:
...
...
openair2/LAYER2/NR_MAC_gNB/mac_rrc_dl_handler.c
View file @
543099d5
...
@@ -149,7 +149,7 @@ void ue_context_setup_request(const f1ap_ue_context_setup_t *req)
...
@@ -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
)
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
);
nr_rlc_srb_recv_sdu
(
dl_rrc
->
rnti
,
dl_rrc
->
srb_id
,
dl_rrc
->
rrc_container
,
dl_rrc
->
rrc_container_length
);
return
0
;
return
0
;
...
...
openair2/LAYER2/nr_pdcp/nr_pdcp_oai_api.c
View file @
543099d5
...
@@ -675,8 +675,7 @@ static void deliver_pdu_drb(void *deliver_pdu_data, ue_id_t ue_id, int rb_id,
...
@@ -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
->
offset
=
GTPU_HEADER_OVERHEAD_MAX
;
req
->
ue_id
=
ue_id
;
req
->
ue_id
=
ue_id
;
req
->
bearer_id
=
rb_id
;
req
->
bearer_id
=
rb_id
;
LOG_I
(
PDCP
,
"%s() (drb %d) sending message to gtp size %d
\n
"
,
LOG_D
(
PDCP
,
"%s() (drb %d) sending message to gtp size %d
\n
"
,
__func__
,
rb_id
,
size
);
__func__
,
rb_id
,
size
);
extern
instance_t
CUuniqInstance
;
extern
instance_t
CUuniqInstance
;
itti_send_msg_to_task
(
TASK_GTPV1_U
,
CUuniqInstance
,
message_p
);
itti_send_msg_to_task
(
TASK_GTPV1_U
,
CUuniqInstance
,
message_p
);
}
else
{
}
else
{
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
543099d5
...
@@ -2205,9 +2205,9 @@ int rrc_gNB_decode_dcch(const protocol_ctxt_t *const ctxt_pP,
...
@@ -2205,9 +2205,9 @@ int rrc_gNB_decode_dcch(const protocol_ctxt_t *const ctxt_pP,
break
;
break
;
case
NR_UL_DCCH_MessageType__c1_PR_ulInformationTransfer
:
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
)
{
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
;
break
;
}
}
...
...
openair2/RRC/NR/rrc_gNB_NGAP.c
View file @
543099d5
...
@@ -655,7 +655,7 @@ rrc_gNB_send_NGAP_UPLINK_NAS(
...
@@ -655,7 +655,7 @@ rrc_gNB_send_NGAP_UPLINK_NAS(
// NGAP_UPLINK_NAS (msg_p).nas_pdu.length,
// NGAP_UPLINK_NAS (msg_p).nas_pdu.length,
// ue_context_pP);
// ue_context_pP);
itti_send_msg_to_task
(
TASK_NGAP
,
ctxt_pP
->
instance
,
msg_p
);
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