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
41d3816c
Commit
41d3816c
authored
Dec 19, 2022
by
Swetank Srivastava
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes
parent
3b101444
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+9
-4
No files found.
openair2/RRC/LTE/rrc_eNB.c
View file @
41d3816c
...
...
@@ -3325,20 +3325,25 @@ void rrc_eNB_generate_defaultRRCConnectionReconfiguration(const protocol_ctxt_t
PDCP_rlc_AM
=
CALLOC
(
1
,
sizeof
(
*
PDCP_rlc_AM
));
DRB_pdcp_config
->
rlc_AM
=
PDCP_rlc_AM
;
if
(
1
)
{
PDCP_rlc_AM
->
statusReportRequired
=
RC
.
RB_Config
[
ue_context_pP
->
ue_context
.
primaryCC_id
][
3
].
PdcpCfg
.
rlc_AM
->
statusReportRequired
;
// PDCP_rlc_AM->statusReportRequired = RC.RB_Config[ue_context_pP->ue_context.primaryCC_id][3].PdcpCfg.rlc_AM->statusReportRequired;
if
(
p_drb
->
list
.
array
[
ik
]
->
pdcp_Config
->
rlc_AM
!=
NULL
)
{
PDCP_rlc_AM
->
statusReportRequired
=
p_drb
->
list
.
array
[
ik
]
->
pdcp_Config
->
rlc_AM
->
statusReportRequired
;
}
}
else
{
PDCP_rlc_AM
->
statusReportRequired
=
FALSE
;
}
#else
PDCP_rlc_UM
=
CALLOC
(
1
,
sizeof
(
*
PDCP_rlc_UM
));
DRB_pdcp_config
->
rlc_UM
=
PDCP_rlc_UM
;
if
(
1
)
{
PDCP_rlc_UM
->
pdcp_SN_Size
=
RC
.
RB_Config
[
ue_context_pP
->
ue_context
.
primaryCC_id
][
3
].
PdcpCfg
.
rlc_UM
->
pdcp_SN_Size
;
if
(
p_drb
->
list
.
array
[
ik
]
->
pdcp_Config
->
rlc_UM
!=
NULL
)
{
// PDCP_rlc_UM->pdcp_SN_Size = RC.RB_Config[ue_context_pP->ue_context.primaryCC_id][3].PdcpCfg.rlc_UM->pdcp_SN_Size;
PDCP_rlc_UM
->
pdcp_SN_Size
=
p_drb
->
list
.
array
[
ik
]
->
pdcp_Config
->
rlc_UM
->
pdcp_SN_Size
}
else
{
PDCP_rlc_UM
->
pdcp_SN_Size
=
LTE_PDCP_Config__rlc_UM__pdcp_SN_Size_len12bits
;
}
#endif
if
(
1
)
{
if
(
p_drb
->
list
.
array
[
ik
]
->
pdcp_Config
->
headerCompression
.
present
==
LTE_PDCP_Config__headerCompression_PR_rohc
)
{
DRB_pdcp_config
->
headerCompression
.
present
=
RC
.
RB_Config
[
ue_context_pP
->
ue_context
.
primaryCC_id
][
3
].
PdcpCfg
.
headerCompression
.
present
;
}
else
{
DRB_pdcp_config
->
headerCompression
.
present
=
LTE_PDCP_Config__headerCompression_PR_notUsed
;
...
...
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