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
8e4c5138
Commit
8e4c5138
authored
Apr 19, 2022
by
luis_pereira87
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix RRC processing time when using F1 split
parent
55f1a6b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
75 additions
and
65 deletions
+75
-65
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+75
-65
No files found.
openair2/RRC/NR/rrc_gNB.c
View file @
8e4c5138
...
...
@@ -732,19 +732,21 @@ rrc_gNB_generate_defaultRRCReconfiguration(
LOG_DUMPMSG
(
NR_RRC
,
DEBUG_RRC
,(
char
*
)
buffer
,
size
,
"[MSG] RRC Reconfiguration
\n
"
);
rrc_mac_config_req_gNB
(
ctxt_pP
->
module_id
,
0
,
rrc
->
configuration
.
pdsch_AntennaPorts
,
0
,
0
,
0
,
rrc
->
carrier
.
servingcellconfigcommon
,
NULL
,
NULL
,
0
,
ue_context_pP
->
ue_context
.
rnti
,
NULL
,
NR_RRC_RECONFIGURATION_DELAY_MS
);
if
(
NODE_IS_DU
(
rrc
->
node_type
)
||
NODE_IS_MONOLITHIC
(
rrc
->
node_type
))
{
rrc_mac_config_req_gNB
(
ctxt_pP
->
module_id
,
0
,
rrc
->
configuration
.
pdsch_AntennaPorts
,
0
,
0
,
0
,
rrc
->
carrier
.
servingcellconfigcommon
,
NULL
,
NULL
,
0
,
ue_context_pP
->
ue_context
.
rnti
,
NULL
,
NR_RRC_RECONFIGURATION_DELAY_MS
);
}
/* Free all NAS PDUs */
for
(
int
i
=
0
;
i
<
ue_context_pP
->
ue_context
.
nb_of_pdusessions
;
i
++
)
{
...
...
@@ -1012,19 +1014,21 @@ rrc_gNB_generate_dedicatedRRCReconfiguration(
cellGroupConfig
);
LOG_DUMPMSG
(
NR_RRC
,
DEBUG_RRC
,(
char
*
)
buffer
,
size
,
"[MSG] RRC Reconfiguration
\n
"
);
rrc_mac_config_req_gNB
(
ctxt_pP
->
module_id
,
0
,
rrc
->
configuration
.
pdsch_AntennaPorts
,
0
,
0
,
0
,
rrc
->
carrier
.
servingcellconfigcommon
,
NULL
,
NULL
,
0
,
ue_context_pP
->
ue_context
.
rnti
,
NULL
,
NR_RRC_RECONFIGURATION_DELAY_MS
);
if
(
NODE_IS_DU
(
rrc
->
node_type
)
||
NODE_IS_MONOLITHIC
(
rrc
->
node_type
))
{
rrc_mac_config_req_gNB
(
ctxt_pP
->
module_id
,
0
,
rrc
->
configuration
.
pdsch_AntennaPorts
,
0
,
0
,
0
,
rrc
->
carrier
.
servingcellconfigcommon
,
NULL
,
NULL
,
0
,
ue_context_pP
->
ue_context
.
rnti
,
NULL
,
NR_RRC_RECONFIGURATION_DELAY_MS
);
}
/* Free all NAS PDUs */
for
(
i
=
0
;
i
<
ue_context_pP
->
ue_context
.
nb_of_pdusessions
;
i
++
)
{
...
...
@@ -1199,19 +1203,21 @@ rrc_gNB_modify_dedicatedRRCReconfiguration(
NULL
);
LOG_DUMPMSG
(
NR_RRC
,
DEBUG_RRC
,
(
char
*
)
buffer
,
size
,
"[MSG] RRC Reconfiguration
\n
"
);
rrc_mac_config_req_gNB
(
ctxt_pP
->
module_id
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
configuration
.
pdsch_AntennaPorts
,
0
,
0
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
.
servingcellconfigcommon
,
NULL
,
NULL
,
0
,
ue_context_pP
->
ue_context
.
rnti
,
NULL
,
NR_RRC_RECONFIGURATION_DELAY_MS
);
if
(
NODE_IS_DU
(
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
node_type
)
||
NODE_IS_MONOLITHIC
(
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
node_type
))
{
rrc_mac_config_req_gNB
(
ctxt_pP
->
module_id
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
configuration
.
pdsch_AntennaPorts
,
0
,
0
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
.
servingcellconfigcommon
,
NULL
,
NULL
,
0
,
ue_context_pP
->
ue_context
.
rnti
,
NULL
,
NR_RRC_RECONFIGURATION_DELAY_MS
);
}
/* Free all NAS PDUs */
for
(
i
=
0
;
i
<
ue_context_pP
->
ue_context
.
nb_of_modify_pdusessions
;
i
++
)
{
...
...
@@ -1317,19 +1323,21 @@ rrc_gNB_generate_dedicatedRRCReconfiguration_release(
LOG_DUMPMSG
(
NR_RRC
,
DEBUG_RRC
,(
char
*
)
buffer
,
size
,
"[MSG] RRC Reconfiguration
\n
"
);
rrc_mac_config_req_gNB
(
ctxt_pP
->
module_id
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
configuration
.
pdsch_AntennaPorts
,
0
,
0
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
.
servingcellconfigcommon
,
NULL
,
NULL
,
0
,
ue_context_pP
->
ue_context
.
rnti
,
NULL
,
NR_RRC_RECONFIGURATION_DELAY_MS
);
if
(
NODE_IS_DU
(
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
node_type
)
||
NODE_IS_MONOLITHIC
(
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
node_type
))
{
rrc_mac_config_req_gNB
(
ctxt_pP
->
module_id
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
configuration
.
pdsch_AntennaPorts
,
0
,
0
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
.
servingcellconfigcommon
,
NULL
,
NULL
,
0
,
ue_context_pP
->
ue_context
.
rnti
,
NULL
,
NR_RRC_RECONFIGURATION_DELAY_MS
);
}
/* Free all NAS PDUs */
if
(
nas_length
>
0
)
{
...
...
@@ -1882,19 +1890,21 @@ rrc_gNB_process_RRCConnectionReestablishmentComplete(
LOG_DUMPMSG
(
NR_RRC
,
DEBUG_RRC
,(
char
*
)
buffer
,
size
,
"[MSG] RRC Reconfiguration
\n
"
);
rrc_mac_config_req_gNB
(
ctxt_pP
->
module_id
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
configuration
.
pdsch_AntennaPorts
,
0
,
0
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
.
servingcellconfigcommon
,
NULL
,
NULL
,
0
,
ue_context_pP
->
ue_context
.
rnti
,
NULL
,
NR_RRC_RECONFIGURATION_DELAY_MS
);
if
(
NODE_IS_DU
(
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
node_type
)
||
NODE_IS_MONOLITHIC
(
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
node_type
))
{
rrc_mac_config_req_gNB
(
ctxt_pP
->
module_id
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
configuration
.
pdsch_AntennaPorts
,
0
,
0
,
0
,
RC
.
nrrrc
[
ctxt_pP
->
module_id
]
->
carrier
.
servingcellconfigcommon
,
NULL
,
NULL
,
0
,
ue_context_pP
->
ue_context
.
rnti
,
NULL
,
NR_RRC_RECONFIGURATION_DELAY_MS
);
}
/* Free all NAS PDUs */
for
(
i
=
0
;
i
<
ue_context_pP
->
ue_context
.
nb_of_pdusessions
;
i
++
)
{
...
...
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