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
7a937970
Commit
7a937970
authored
Apr 29, 2020
by
zhenghuangkun
Committed by
Haruki NAOI
May 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix x2ho pci error
(cherry picked from commit 8d812460c4f42cb294c3ce86f030780c64c3b739)
parent
775fb895
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
+21
-2
openair2/X2AP/x2ap_eNB.c
openair2/X2AP/x2ap_eNB.c
+21
-2
No files found.
openair2/X2AP/x2ap_eNB.c
View file @
7a937970
...
...
@@ -447,6 +447,22 @@ void x2ap_eNB_handle_sctp_init_msg_multi_cnf(
}
}
static
void
x2ap_eNB_ho_cancel_rrc_notify
(
x2ap_eNB_instance_t
*
instance_p
,
x2ap_handover_cancel_cause_t
cause
,
int
rnti
)
{
instance_t
instance
=
0
;
MessageDef
*
msg
;
if
(
instance_p
)
{
instance
=
instance_p
->
instance
;
}
/* inform RRC of cancellation */
msg
=
itti_alloc_new_message
(
TASK_X2AP
,
X2AP_HANDOVER_CANCEL
);
X2AP_HANDOVER_CANCEL
(
msg
).
rnti
=
rnti
;
X2AP_HANDOVER_CANCEL
(
msg
).
cause
=
cause
;
itti_send_msg_to_task
(
TASK_RRC_ENB
,
instance
,
msg
);
}
static
void
x2ap_eNB_handle_handover_req
(
instance_t
instance
,
x2ap_handover_req_t
*
x2ap_handover_req
)
...
...
@@ -461,13 +477,15 @@ void x2ap_eNB_handle_handover_req(instance_t instance,
instance_p
=
x2ap_eNB_get_instance
(
instance
);
if
(
instance_p
==
NULL
)
{
X2AP_ERROR
(
"%s %d: instance_p is a NULL pointer
\n
"
,
__FILE__
,
__LINE__
);
x2ap_eNB_ho_cancel_rrc_notify
(
instance_p
,
X2AP_T_RELOC_PREP_TIMEOUT
,
x2ap_handover_req
->
rnti
);
return
;
}
target
=
x2ap_is_eNB_pci_in_list
(
target_pci
);
if
(
target
==
NULL
)
{
X2AP_ERROR
(
"%s %d: target is a NULL pointer
\n
"
,
__FILE__
,
__LINE__
);
return
;
X2AP_ERROR
(
"%s %d: target is a NULL pointer, target_pci %d
\n
"
,
__FILE__
,
__LINE__
,
target_pci
);
x2ap_eNB_ho_cancel_rrc_notify
(
instance_p
,
X2AP_T_RELOC_PREP_TIMEOUT
,
x2ap_handover_req
->
rnti
);
return
;
}
/* allocate x2ap ID */
...
...
@@ -476,6 +494,7 @@ void x2ap_eNB_handle_handover_req(instance_t instance,
if
(
ue_id
==
-
1
)
{
X2AP_ERROR
(
"could not allocate a new X2AP UE ID
\n
"
);
/* TODO: cancel handover: send (to be defined) message to RRC */
x2ap_eNB_ho_cancel_rrc_notify
(
instance_p
,
X2AP_T_RELOC_PREP_TIMEOUT
,
x2ap_handover_req
->
rnti
);
//exit(1);
return
;
}
...
...
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