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
c80d2ec4
Commit
c80d2ec4
authored
Jan 15, 2020
by
yaojie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix error in timer stop missing
parent
9efd38d1
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
4 deletions
+14
-4
openair2/COMMON/x2ap_messages_types.h
openair2/COMMON/x2ap_messages_types.h
+2
-1
openair2/RRC/LTE/rrc_eNB.c
openair2/RRC/LTE/rrc_eNB.c
+3
-0
openair2/X2AP/x2ap_eNB_handler.c
openair2/X2AP/x2ap_eNB_handler.c
+9
-3
No files found.
openair2/COMMON/x2ap_messages_types.h
View file @
c80d2ec4
...
...
@@ -63,7 +63,8 @@ typedef struct x2ap_ue_context_release_s {
typedef
enum
{
X2AP_T_RELOC_PREP_TIMEOUT
,
X2AP_TX2_RELOC_OVERALL_TIMEOUT
X2AP_TX2_RELOC_OVERALL_TIMEOUT
,
X2AP_UNKNOWN_CAUSE
}
x2ap_handover_cancel_cause_t
;
typedef
struct
x2ap_handover_cancel_s
{
...
...
openair2/RRC/LTE/rrc_eNB.c
View file @
c80d2ec4
...
...
@@ -9134,6 +9134,9 @@ void *rrc_enb_process_itti_msg(void *notUsed) {
case
X2AP_TX2_RELOC_OVERALL_TIMEOUT
:
cause
=
"Tx2_RelocOverall timeout"
;
break
;
case
X2AP_UNKNOWN_CAUSE
:
cause
=
"UNKNOWN timeout"
;
break
;
default:
/* cannot come here */
exit
(
1
);
...
...
openair2/X2AP/x2ap_eNB_handler.c
View file @
c80d2ec4
...
...
@@ -1087,9 +1087,14 @@ int x2ap_eNB_handle_handover_cancel (instance_t instance,
ie
->
value
.
choice
.
Cause
.
choice
.
radioNetwork
==
X2AP_CauseRadioNetwork_tx2relocoverall_expiry
))
{
X2AP_ERROR
(
"%s %d: Cause not supported (only T_reloc_prep and TX2_reloc_overall handled)
\n
"
,
__FILE__
,
__LINE__
);
return
-
1
;
}
X2AP_ERROR
(
"
\t
ie->value.present=%u
\n
"
"
\t
ie->value.choice.Cause.present=%u
\n
"
"
\t
ie->value.choice.Cause.choice.radioNetwork=%ld
\n
"
"
\t
ie->value.choice.Cause.choice.radioNetwork=%ld
\n
"
,
ie
->
value
.
present
,
ie
->
value
.
choice
.
Cause
.
present
,
ie
->
value
.
choice
.
Cause
.
choice
.
radioNetwork
,
ie
->
value
.
choice
.
Cause
.
choice
.
radioNetwork
);
//return -1;
}
cause
=
X2AP_UNKNOWN_CAUSE
;
switch
(
ie
->
value
.
choice
.
Cause
.
choice
.
radioNetwork
)
{
case
X2AP_CauseRadioNetwork_trelocprep_expiry
:
cause
=
X2AP_T_RELOC_PREP_TIMEOUT
;
...
...
@@ -1097,7 +1102,8 @@ int x2ap_eNB_handle_handover_cancel (instance_t instance,
case
X2AP_CauseRadioNetwork_tx2relocoverall_expiry
:
cause
=
X2AP_TX2_RELOC_OVERALL_TIMEOUT
;
break
;
default:
/* can't come here */
exit
(
1
);
default:
/* can't come here */
//exit(1);
break
;
}
ue_id
=
x2ap_find_id_from_id_source
(
&
instance_p
->
id_manager
,
id_source
);
...
...
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