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
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
oai
openairinterface5G
Commits
61fc53f8
Commit
61fc53f8
authored
5 years ago
by
Wu Jing
Browse files
Options
Downloads
Patches
Plain Diff
skip crnti if c-plane is not completed
parent
c227a34d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
5 merge requests
!650
Release v1.1.0 Candidate
,
!649
Develop: Integration 2019 Week 30
,
!642
Develop: Integration 2019 Mid-Week 29
,
!630
nfapi interface bug fix
,
!588
Develop nr merge
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
+5
-1
5 additions, 1 deletion
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
openair2/RRC/LTE/L2_interface.c
+5
-0
5 additions, 0 deletions
openair2/RRC/LTE/L2_interface.c
with
10 additions
and
1 deletion
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
+
5
−
1
View file @
61fc53f8
...
...
@@ -460,7 +460,7 @@ rx_sdu(const module_id_t enb_mod_idP,
if
(
RA_id
!=
-
1
)
{
RA_t
*
ra
=
&
(
mac
->
common_channels
[
CC_idP
].
ra
[
RA_id
]);
mac_rrc_data_ind
(
enb_mod_idP
,
int8_t
ret
=
mac_rrc_data_ind
(
enb_mod_idP
,
CC_idP
,
frameP
,
subframeP
,
UE_id
,
...
...
@@ -474,6 +474,7 @@ rx_sdu(const module_id_t enb_mod_idP,
#endif
);
/* Received a new rnti */
if
(
ret
==
0
){
ra
->
state
=
MSGCRNTI
;
LOG_I
(
MAC
,
"[eNB %d] Frame %d, Subframe %d CC_id %d : (rnti %x UE_id %d) Received rnti(Msg4)
\n
"
,
enb_mod_idP
,
...
...
@@ -502,6 +503,9 @@ rx_sdu(const module_id_t enb_mod_idP,
}
UE_template_ptr
->
ul_SR
=
1
;
UE_scheduling_control
->
crnti_reconfigurationcomplete_flag
=
1
;
}
else
{
cancel_ra_proc
(
enb_mod_idP
,
CC_idP
,
frameP
,
current_rnti
);
}
// break;
}
}
...
...
This diff is collapsed.
Click to expand it.
openair2/RRC/LTE/L2_interface.c
+
5
−
0
View file @
61fc53f8
...
...
@@ -289,10 +289,15 @@ mac_rrc_data_ind(
ue_context_p
=
rrc_eNB_get_ue_context
(
RC
.
rrc
[
ctxt
.
module_id
],
rntiP
);
if
(
ue_context_p
)
{
if
(
ue_context_p
->
ue_context
.
Status
!=
RRC_RECONFIGURED
){
LOG_E
(
RRC
,
"[eNB %d] Received C-RNTI ,but UE %x status(%d) not RRC_RECONFIGURED
\n
"
,
module_idP
,
rntiP
,
ue_context_p
->
ue_context
.
Status
);
return
(
-
1
);
}
else
{
rrc_eNB_generate_defaultRRCConnectionReconfiguration
(
&
ctxt
,
ue_context_p
,
0
);
ue_context_p
->
ue_context
.
Status
=
RRC_RECONFIGURED
;
}
}
}
...
...
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