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
a90a7f35
Commit
a90a7f35
authored
Jun 07, 2019
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Additional messages for error diagnosis for net-ctrld HO
parent
67fc2f7c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
openair2/ENB_APP/flexran_agent_common.c
openair2/ENB_APP/flexran_agent_common.c
+1
-1
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+6
-2
No files found.
openair2/ENB_APP/flexran_agent_common.c
View file @
a90a7f35
...
@@ -871,7 +871,7 @@ int flexran_agent_rrc_trigger_handover(mid_t mod_id, const void *params, Protoco
...
@@ -871,7 +871,7 @@ int flexran_agent_rrc_trigger_handover(mid_t mod_id, const void *params, Protoco
rnti_found
=
1
;
rnti_found
=
1
;
// Call the proper wrapper in FlexRAN API
// Call the proper wrapper in FlexRAN API
if
(
flexran_call_rrc_trigger_handover
(
mod_id
,
ho_command
->
rnti
,
ho_command
->
target_phy_cell_id
)
<
0
)
{
if
(
flexran_call_rrc_trigger_handover
(
mod_id
,
ho_command
->
rnti
,
ho_command
->
target_phy_cell_id
)
<
0
)
{
LOG_E
(
FLEXRAN_AGENT
,
"Error in handovering user %d
\n
"
,
i
);
LOG_E
(
FLEXRAN_AGENT
,
"Error in handovering user %d
/RNTI %x
\n
"
,
i
,
rnt
i
);
}
}
break
;
break
;
}
}
...
...
openair2/RRC/LTE/rrc_eNB.c
View file @
a90a7f35
...
@@ -4842,14 +4842,18 @@ int cell_found = 0;
...
@@ -4842,14 +4842,18 @@ int cell_found = 0;
/* Check if eNB id was found */
/* Check if eNB id was found */
if
(
!
cell_found
)
if
(
!
cell_found
)
{
LOG_E
(
RRC
,
"%s(): cannot find target eNB with phyCellId %d
\n
"
,
__func__
,
target_cell_id
);
return
-
1
;
return
-
1
;
}
/* Handover process is following */
/* Handover process is following */
/* if X2AP is disabled, do nothing */
/* if X2AP is disabled, do nothing */
if
(
!
is_x2ap_enabled
())
if
(
!
is_x2ap_enabled
())
{
LOG_E
(
RRC
,
"X2 is disabled
\n
"
);
return
-
1
;
return
-
1
;
}
LOG_D
(
RRC
,
"Handover is triggered by FlexRAN controller...
\n
"
);
LOG_D
(
RRC
,
"Handover is triggered by FlexRAN controller...
\n
"
);
...
...
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