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
47749bf4
Commit
47749bf4
authored
Oct 04, 2022
by
Vaibhav Shrivastava
Committed by
jperaldi
Nov 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
physicalCellId Issue Changes
parent
a3af575b
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
123 additions
and
131 deletions
+123
-131
openair3/SS/ss_eNB_drb_task.c
openair3/SS/ss_eNB_drb_task.c
+1
-0
openair3/SS/ss_eNB_srb_task.c
openair3/SS/ss_eNB_srb_task.c
+1
-0
openair3/SS/ss_eNB_sys_task.c
openair3/SS/ss_eNB_sys_task.c
+119
-131
openair3/SS/ss_eNB_sysind_task.c
openair3/SS/ss_eNB_sysind_task.c
+1
-0
openair3/SS/ss_eNB_vtp_task.c
openair3/SS/ss_eNB_vtp_task.c
+1
-0
No files found.
openair3/SS/ss_eNB_drb_task.c
View file @
47749bf4
...
@@ -277,6 +277,7 @@ void *ss_eNB_drb_process_itti_msg(void *notUsed)
...
@@ -277,6 +277,7 @@ void *ss_eNB_drb_process_itti_msg(void *notUsed)
int
cell_index
;
int
cell_index
;
if
(
received_msg
->
ittiMsg
.
ss_drb_pdu_ind
.
physCellId
){
if
(
received_msg
->
ittiMsg
.
ss_drb_pdu_ind
.
physCellId
){
cell_index
=
get_cell_index_pci
(
received_msg
->
ittiMsg
.
ss_drb_pdu_ind
.
physCellId
,
SS_context
.
SSCell_list
);
cell_index
=
get_cell_index_pci
(
received_msg
->
ittiMsg
.
ss_drb_pdu_ind
.
physCellId
,
SS_context
.
SSCell_list
);
LOG_A
(
ENB_SS
,
"[SS_DRB] cell_index in SS_DRB_PDU_IND: %d PhysicalCellId: %d
\n
"
,
cell_index
,
SS_context
.
SSCell_list
[
cell_index
].
PhysicalCellId
);
}
}
task_id_t
origin_task
=
ITTI_MSG_ORIGIN_ID
(
received_msg
);
task_id_t
origin_task
=
ITTI_MSG_ORIGIN_ID
(
received_msg
);
...
...
openair3/SS/ss_eNB_srb_task.c
View file @
47749bf4
...
@@ -459,6 +459,7 @@ void *ss_eNB_srb_process_itti_msg(void *notUsed)
...
@@ -459,6 +459,7 @@ void *ss_eNB_srb_process_itti_msg(void *notUsed)
task_id_t
origin_task
=
ITTI_MSG_ORIGIN_ID
(
received_msg
);
task_id_t
origin_task
=
ITTI_MSG_ORIGIN_ID
(
received_msg
);
if
(
received_msg
->
ittiMsg
.
ss_rrc_pdu_ind
.
physCellId
){
if
(
received_msg
->
ittiMsg
.
ss_rrc_pdu_ind
.
physCellId
){
cell_index
=
get_cell_index_pci
(
received_msg
->
ittiMsg
.
ss_rrc_pdu_ind
.
physCellId
,
SS_context
.
SSCell_list
);
cell_index
=
get_cell_index_pci
(
received_msg
->
ittiMsg
.
ss_rrc_pdu_ind
.
physCellId
,
SS_context
.
SSCell_list
);
LOG_A
(
ENB_SS
,
"[SS_SRB] cell_index in SS_RRC_PDU_IND: %d PhysicalCellId: %d
\n
"
,
cell_index
,
SS_context
.
SSCell_list
[
cell_index
].
PhysicalCellId
);
}
}
if
(
origin_task
==
TASK_SS_PORTMAN
)
if
(
origin_task
==
TASK_SS_PORTMAN
)
...
...
openair3/SS/ss_eNB_sys_task.c
View file @
47749bf4
This diff is collapsed.
Click to expand it.
openair3/SS/ss_eNB_sysind_task.c
View file @
47749bf4
...
@@ -277,6 +277,7 @@ void *ss_eNB_sysind_process_itti_msg(void *notUsed)
...
@@ -277,6 +277,7 @@ void *ss_eNB_sysind_process_itti_msg(void *notUsed)
int
cell_index
;
int
cell_index
;
if
(
received_msg
->
ittiMsg
.
ss_system_ind
.
physCellId
){
if
(
received_msg
->
ittiMsg
.
ss_system_ind
.
physCellId
){
cell_index
=
get_cell_index_pci
(
received_msg
->
ittiMsg
.
ss_system_ind
.
physCellId
,
SS_context
.
SSCell_list
);
cell_index
=
get_cell_index_pci
(
received_msg
->
ittiMsg
.
ss_system_ind
.
physCellId
,
SS_context
.
SSCell_list
);
LOG_A
(
ENB_SS
,
"[SS_SYSIND] cell_index in SS_SYSTEM_IND: %d PhysicalCellId: %d
\n
"
,
cell_index
,
SS_context
.
SSCell_list
[
cell_index
].
PhysicalCellId
);
}
}
task_id_t
origin_task
=
ITTI_MSG_ORIGIN_ID
(
received_msg
);
task_id_t
origin_task
=
ITTI_MSG_ORIGIN_ID
(
received_msg
);
...
...
openair3/SS/ss_eNB_vtp_task.c
View file @
47749bf4
...
@@ -383,6 +383,7 @@ void *ss_eNB_vtp_process_itti_msg(void *notUsed)
...
@@ -383,6 +383,7 @@ void *ss_eNB_vtp_process_itti_msg(void *notUsed)
tinfo
.
sfn
=
SS_UPD_TIM_INFO
(
received_msg
).
sfn
;
tinfo
.
sfn
=
SS_UPD_TIM_INFO
(
received_msg
).
sfn
;
if
(
SS_UPD_TIM_INFO
(
received_msg
).
physCellId
){
if
(
SS_UPD_TIM_INFO
(
received_msg
).
physCellId
){
cellIndex
=
get_cell_index_pci
(
SS_UPD_TIM_INFO
(
received_msg
).
physCellId
,
SS_context
.
SSCell_list
);
cellIndex
=
get_cell_index_pci
(
SS_UPD_TIM_INFO
(
received_msg
).
physCellId
,
SS_context
.
SSCell_list
);
LOG_A
(
ENB_SS
,
"[VTP] cellIndex in SS_UPD_TIM_INFO: %d PhysicalCellId: %d
\n
"
,
cellIndex
,
SS_context
.
SSCell_list
[
cellIndex
].
PhysicalCellId
);
}
}
LOG_A
(
ENB_APP
,
"[VTP] received VTP_UPD_TIM_INFO SFN: %d SF: %d
\n
"
,
tinfo
.
sfn
,
tinfo
.
sf
);
LOG_A
(
ENB_APP
,
"[VTP] received VTP_UPD_TIM_INFO SFN: %d SF: %d
\n
"
,
tinfo
.
sfn
,
tinfo
.
sf
);
LOG_A
(
ENB_APP
,
"[VTP] received VTP_UPD_TIM_INFO SFN: %d SF: %d
\n
"
,
tinfo
.
sfn
,
tinfo
.
sf
);
LOG_A
(
ENB_APP
,
"[VTP] received VTP_UPD_TIM_INFO SFN: %d SF: %d
\n
"
,
tinfo
.
sfn
,
tinfo
.
sf
);
...
...
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