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
240481e2
Commit
240481e2
authored
Jul 25, 2022
by
General ABS
Committed by
rmagueta
Jun 13, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for physCellId different from 0 for CU DU
parent
f8f9f8ac
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
openair2/GNB_APP/gnb_config.c
openair2/GNB_APP/gnb_config.c
+1
-0
openair2/RRC/NR/nr_rrc_defs.h
openair2/RRC/NR/nr_rrc_defs.h
+1
-1
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+1
-1
No files found.
openair2/GNB_APP/gnb_config.c
View file @
240481e2
...
...
@@ -1187,6 +1187,7 @@ void RCconfig_NRRRC(MessageDef *msg_p, uint32_t i, gNB_RRC_INST *rrc) {
rrc
->
nr_cellid
=
(
uint64_t
)
*
(
GNBParamList
.
paramarray
[
i
][
GNB_NRCELLID_IDX
].
u64ptr
);
rrc
->
carrier
.
physCellId
=
*
scc
->
physCellId
;
rrc
->
um_on_default_drb
=
*
(
GNBParamList
.
paramarray
[
i
][
GNB_UMONDEFAULTDRB_IDX
].
uptr
);
if
(
strcmp
(
*
(
GNBParamList
.
paramarray
[
i
][
GNB_TRANSPORT_S_PREFERENCE_IDX
].
strptr
),
"local_mac"
)
==
0
)
{
...
...
openair2/RRC/NR/nr_rrc_defs.h
View file @
240481e2
...
...
@@ -344,7 +344,7 @@ typedef struct {
uint8_t
*
SIB23
;
uint8_t
sizeof_SIB23
;
int
physCellId
;
long
physCellId
;
NR_BCCH_BCH_Message_t
*
mib
;
NR_SIB1_t
*
siblock1_DU
;
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
240481e2
...
...
@@ -1630,7 +1630,7 @@ static int nr_rrc_gNB_decode_ccch(module_id_t module_id, rnti_t rnti, const uint
if
(
physCellId
!=
gnb_rrc_inst
->
carrier
.
physCellId
)
{
/* UE was moving from previous cell so quickly that RRCReestablishment for previous cell was received in this cell */
LOG_E
(
NR_RRC
,
" NR_RRCReestablishmentRequest ue_Identity.physCellId(%ld) is not equal to current physCellId(%d), fallback to RRC establishment
\n
"
,
" NR_RRCReestablishmentRequest ue_Identity.physCellId(%ld) is not equal to current physCellId(%
l
d), fallback to RRC establishment
\n
"
,
physCellId
,
gnb_rrc_inst
->
carrier
.
physCellId
);
xid
=
rrc_gNB_generate_RRCSetup_for_RRCReestablishmentRequest
(
module_id
,
rnti
,
0
);
...
...
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