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
d907cbd4
Commit
d907cbd4
authored
Mar 21, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused servingcellconfig parameter in RRC config
parent
c744b015
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
3 deletions
+1
-3
openair2/RRC/NR/nr_rrc_defs.h
openair2/RRC/NR/nr_rrc_defs.h
+0
-1
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+0
-1
openair2/RRC/NR/rrc_gNB_nsa.c
openair2/RRC/NR/rrc_gNB_nsa.c
+1
-1
No files found.
openair2/RRC/NR/nr_rrc_defs.h
View file @
d907cbd4
...
@@ -467,7 +467,6 @@ typedef struct {
...
@@ -467,7 +467,6 @@ typedef struct {
NR_BCCH_DL_SCH_Message_t
systemInformation
;
// SIB23
NR_BCCH_DL_SCH_Message_t
systemInformation
;
// SIB23
NR_BCCH_DL_SCH_Message_t
*
siblock1
;
NR_BCCH_DL_SCH_Message_t
*
siblock1
;
NR_ServingCellConfigCommon_t
*
servingcellconfigcommon
;
NR_ServingCellConfigCommon_t
*
servingcellconfigcommon
;
NR_ServingCellConfig_t
*
servingcellconfig
;
NR_CellGroupConfig_t
*
secondaryCellGroup
[
MAX_NR_RRC_UE_CONTEXTS
];
NR_CellGroupConfig_t
*
secondaryCellGroup
[
MAX_NR_RRC_UE_CONTEXTS
];
int
p_gNB
;
int
p_gNB
;
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
d907cbd4
...
@@ -270,7 +270,6 @@ static void openair_rrc_gNB_configuration(const module_id_t gnb_mod_idP, gNB_Rrc
...
@@ -270,7 +270,6 @@ static void openair_rrc_gNB_configuration(const module_id_t gnb_mod_idP, gNB_Rrc
RB_INIT
(
&
rrc
->
rrc_ue_head
);
RB_INIT
(
&
rrc
->
rrc_ue_head
);
rrc
->
configuration
=
*
configuration
;
rrc
->
configuration
=
*
configuration
;
rrc
->
carrier
.
servingcellconfigcommon
=
configuration
->
scc
;
rrc
->
carrier
.
servingcellconfigcommon
=
configuration
->
scc
;
rrc
->
carrier
.
servingcellconfig
=
configuration
->
scd
;
nr_rrc_config_ul_tda
(
configuration
->
scc
,
configuration
->
minRXTXTIME
);
nr_rrc_config_ul_tda
(
configuration
->
scc
,
configuration
->
minRXTXTIME
);
/// System Information INIT
/// System Information INIT
pthread_mutex_init
(
&
rrc
->
cell_info_mutex
,
NULL
);
pthread_mutex_init
(
&
rrc
->
cell_info_mutex
,
NULL
);
...
...
openair2/RRC/NR/rrc_gNB_nsa.c
View file @
d907cbd4
...
@@ -100,7 +100,7 @@ void rrc_parse_ue_capabilities(gNB_RRC_INST *rrc, NR_UE_CapabilityRAT_ContainerL
...
@@ -100,7 +100,7 @@ void rrc_parse_ue_capabilities(gNB_RRC_INST *rrc, NR_UE_CapabilityRAT_ContainerL
LOG_A
(
NR_RRC
,
"Successfully decoded UE NR capabilities (NR and MRDC)
\n
"
);
LOG_A
(
NR_RRC
,
"Successfully decoded UE NR capabilities (NR and MRDC)
\n
"
);
UE
->
spCellConfig
=
calloc
(
1
,
sizeof
(
struct
NR_SpCellConfig
));
UE
->
spCellConfig
=
calloc
(
1
,
sizeof
(
struct
NR_SpCellConfig
));
UE
->
spCellConfig
->
spCellConfigDedicated
=
rrc
->
c
arrier
.
servingcellconfig
;
UE
->
spCellConfig
->
spCellConfigDedicated
=
rrc
->
c
onfiguration
.
scd
;
LOG_I
(
NR_RRC
,
"Adding new NSA user (%p)
\n
"
,
ue_context_p
);
LOG_I
(
NR_RRC
,
"Adding new NSA user (%p)
\n
"
,
ue_context_p
);
rrc_add_nsa_user
(
rrc
,
ue_context_p
,
m
);
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