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
canghaiwuhen
OpenXG-RAN
Commits
860c5dc2
Commit
860c5dc2
authored
Feb 25, 2019
by
wujing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove ue info in rcc and pdcp, add log to output ue number in rrc_reconf
parent
c1f72c2e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
openair2/RRC/LTE/L2_interface.c
openair2/RRC/LTE/L2_interface.c
+1
-1
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+10
-4
No files found.
openair2/RRC/LTE/L2_interface.c
View file @
860c5dc2
...
...
@@ -317,7 +317,7 @@ void mac_eNB_rrc_ul_failure(const module_id_t Mod_instP,
PROTOCOL__FLEX_UE_STATE_CHANGE_TYPE__FLUESC_DEACTIVATED
);
}
rrc_mac_remove_ue
(
Mod_instP
,
rntiP
);
//
rrc_mac_remove_ue(Mod_instP,rntiP);
}
void
mac_eNB_rrc_uplane_failure
(
const
module_id_t
Mod_instP
,
...
...
openair2/RRC/LTE/rrc_eNB.c
View file @
860c5dc2
...
...
@@ -119,7 +119,7 @@ extern UE_MAC_INST *UE_mac_inst;
extern
uint16_t
two_tier_hexagonal_cellIds
[
7
];
mui_t
rrc_eNB_mui
=
0
;
uint32_t
reconf_ue_num
=
0
;
void
openair_rrc_on
(
const
protocol_ctxt_t
*
const
ctxt_pP
...
...
@@ -7227,15 +7227,18 @@ rrc_rx_tx(
if
((
ctxt_pP
->
frame
==
0
)
&&
(
ctxt_pP
->
subframe
==
0
))
{
if
(
ue_context_p
->
ue_context
.
Initialue_identity_s_TMSI
.
presence
==
TRUE
)
{
LOG_I
(
RRC
,
"UE rnti %x: S-TMSI %x failure timer %d/
8
\n
"
,
LOG_I
(
RRC
,
"UE rnti %x: S-TMSI %x failure timer %d/
20000
\n
"
,
ue_context_p
->
ue_context
.
rnti
,
ue_context_p
->
ue_context
.
Initialue_identity_s_TMSI
.
m_tmsi
,
ue_context_p
->
ue_context
.
ul_failure_timer
);
}
else
{
LOG_I
(
RRC
,
"UE rnti %x failure timer %d/
8
\n
"
,
LOG_I
(
RRC
,
"UE rnti %x failure timer %d/
20000
\n
"
,
ue_context_p
->
ue_context
.
rnti
,
ue_context_p
->
ue_context
.
ul_failure_timer
);
}
if
(
ue_context_p
->
ue_context
.
Status
==
RRC_RECONFIGURED
&&
ue_context_p
->
ue_context
.
ul_failure_timer
<=
0
)
{
++
reconf_ue_num
;
}
}
if
(
ue_context_p
->
ue_context
.
ul_failure_timer
>
0
)
{
...
...
@@ -7390,7 +7393,10 @@ rrc_rx_tx(
}
}
}
// end RB_FOREACH
if
((
ctxt_pP
->
frame
==
0
)
&&
(
ctxt_pP
->
subframe
==
0
))
{
LOG_I
(
RRC
,
"NUMBER_OF_UE_IN_RRC_RECONFIGURED: %d
\n
"
,
reconf_ue_num
);
reconf_ue_num
=
0
;
}
if
(
ue_to_be_removed
)
{
if
((
ue_to_be_removed
->
ue_context
.
ul_failure_timer
>=
20000
)
||
((
ue_to_be_removed
->
ue_context
.
ue_rrc_inactivity_timer
>=
RC
.
rrc
[
ctxt_pP
->
module_id
]
->
configuration
.
rrc_inactivity_timer_thres
)
&&
...
...
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