Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
UERANSIM
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
Libraries
UERANSIM
Commits
f229c810
Commit
f229c810
authored
Dec 29, 2021
by
aligungr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Performance improvements
parent
2564a832
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
6 deletions
+7
-6
src/ue/nas/layer.cpp
src/ue/nas/layer.cpp
+5
-0
src/ue/nas/layer.hpp
src/ue/nas/layer.hpp
+1
-0
src/ue/nas/mm/sap.cpp
src/ue/nas/mm/sap.cpp
+0
-4
src/ue/nts.hpp
src/ue/nts.hpp
+0
-1
src/ue/rrc/failures.cpp
src/ue/rrc/failures.cpp
+1
-1
No files found.
src/ue/nas/layer.cpp
View file @
f229c810
...
...
@@ -114,4 +114,9 @@ void NasLayer::handleRrcFallbackIndication()
m_mm
->
handleRrcFallbackIndication
();
}
void
NasLayer
::
handleRadioLinkFailure
()
{
m_mm
->
handleRadioLinkFailure
();
}
}
// namespace nr::ue
\ No newline at end of file
src/ue/nas/layer.hpp
View file @
f229c810
...
...
@@ -39,6 +39,7 @@ class NasLayer
void
handleRrcConnectionRelease
();
void
handlePaging
(
const
std
::
vector
<
GutiMobileIdentity
>
&
tmsiIds
);
void
handleRrcFallbackIndication
();
void
handleRadioLinkFailure
();
};
}
// namespace nr::ue
\ No newline at end of file
src/ue/nas/mm/sap.cpp
View file @
f229c810
...
...
@@ -27,10 +27,6 @@ void NasMm::handleRrcEvent(const NmUeRrcToNas &msg)
receiveNasMessage
(
*
nasMessage
);
break
;
}
case
NmUeRrcToNas
:
:
RADIO_LINK_FAILURE
:
{
handleRadioLinkFailure
();
break
;
}
case
NmUeRrcToNas
:
:
ACTIVE_CELL_CHANGED
:
{
handleActiveCellChange
(
msg
.
previousTai
);
break
;
...
...
src/ue/nts.hpp
View file @
f229c810
...
...
@@ -62,7 +62,6 @@ struct NmUeRrcToNas : NtsMessage
{
NAS_DELIVERY
,
RRC_ESTABLISHMENT_FAILURE
,
RADIO_LINK_FAILURE
,
ACTIVE_CELL_CHANGED
,
}
present
;
...
...
src/ue/rrc/failures.cpp
View file @
f229c810
...
...
@@ -23,7 +23,7 @@ void UeRrcLayer::declareRadioLinkFailure(rls::ERlfCause cause)
void
UeRrcLayer
::
handleRadioLinkFailure
(
rls
::
ERlfCause
cause
)
{
m_state
=
ERrcState
::
RRC_IDLE
;
m_base
->
l3Task
->
push
(
std
::
make_unique
<
NmUeRrcToNas
>
(
NmUeRrcToNas
::
RADIO_LINK_FAILURE
)
);
m_base
->
l3Task
->
nas
().
handleRadioLinkFailure
(
);
}
}
// namespace nr::ue
\ No newline at end of file
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