Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Worker.N
openairinterface5G
Commits
6bbc8169
Commit
6bbc8169
authored
6 years ago
by
knopp
Browse files
Options
Downloads
Patches
Plain Diff
Control plane is functional. Still need to handle RRCConnectionRelease in DU
parent
31fe819c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
openair2/LAYER2/PDCP_v10.1.0/pdcp_sequence_manager.c
+1
-1
1 addition, 1 deletion
openair2/LAYER2/PDCP_v10.1.0/pdcp_sequence_manager.c
openair2/LAYER2/RLC/rlc.c
+5
-4
5 additions, 4 deletions
openair2/LAYER2/RLC/rlc.c
openair2/RRC/LTE/L2_interface.c
+3
-3
3 additions, 3 deletions
openair2/RRC/LTE/L2_interface.c
with
9 additions
and
8 deletions
openair2/LAYER2/PDCP_v10.1.0/pdcp_sequence_manager.c
+
1
−
1
View file @
6bbc8169
...
...
@@ -150,7 +150,7 @@ boolean_t pdcp_is_rx_seq_number_valid(uint16_t seq_num, pdcp_t* pdcp_entity,srb_
uint16_t
reordering_window
=
0
;
LOG_D
(
PDCP
,
"Incoming RX Sequence number is %04d
\n
"
,
seq_num
);
LOG_D
(
PDCP
,
"Incoming RX Sequence number is
%04d (next
%04d
\n
"
,
seq_num
,
pdcp_entity
->
next_pdcp_rx_sn
);
if
(
pdcp_is_seq_num_size_valid
(
pdcp_entity
)
==
FALSE
||
pdcp_is_seq_num_valid
(
seq_num
,
pdcp_entity
->
seq_num_size
)
==
FALSE
)
{
return
FALSE
;
...
...
This diff is collapsed.
Click to expand it.
openair2/LAYER2/RLC/rlc.c
+
5
−
4
View file @
6bbc8169
...
...
@@ -635,10 +635,11 @@ void rlc_data_ind (
break
;
case
ngran_eNB_DU
:
case
ngran_gNB_DU
:
DU_send_UL_RRC_MESSAGE_TRANSFER
(
ctxt_pP
,
rb_idP
,
sdu_sizeP
,
sdu_pP
->
data
);
if
(
srb_flagP
==
1
)
DU_send_UL_RRC_MESSAGE_TRANSFER
(
ctxt_pP
,
rb_idP
,
sdu_sizeP
,
sdu_pP
->
data
);
break
;
default:
...
...
This diff is collapsed.
Click to expand it.
openair2/RRC/LTE/L2_interface.c
+
3
−
3
View file @
6bbc8169
...
...
@@ -132,7 +132,7 @@ mac_rrc_data_req(
(
void
*
)
mib
,
carrier
->
MIB
,
24
);
LOG_D
(
RRC
,
"Encoded MIB for frame %d (%p), bits %lu
\n
"
,
sfn
,
carrier
->
MIB
,
enc_rval
.
encoded
);
//
LOG_D(RRC,"Encoded MIB for frame %d (%p), bits %lu\n",sfn,carrier->MIB,enc_rval.encoded);
buffer_pP
[
0
]
=
carrier
->
MIB
[
0
];
buffer_pP
[
1
]
=
carrier
->
MIB
[
1
];
buffer_pP
[
2
]
=
carrier
->
MIB
[
2
];
...
...
@@ -149,10 +149,10 @@ mac_rrc_data_req(
eNB_RRC_UE_t
*
ue_p
=
&
ue_context_p
->
ue_context
;
LOG_T
(
RRC
,
"[eNB %d] Frame %d CCCH request (Srb_id %d, rnti %x)
\n
"
,
Mod_idP
,
frameP
,
Srb_id
,
rnti
);
if
(
ue_p
->
Srb0
.
Active
==
0
)
{
/*
if(ue_p->Srb0.Active==0) {
LOG_E(RRC,"[eNB %d] CCCH Not active (%p, rnti %x)\n",Mod_idP,ue_p,ue_p->rnti);
return(0);
}
}
*/
Srb_info
=&
ue_p
->
Srb0
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment