daniel has submitted this change and it was merged. (
https://gerrit.osmocom.org/11429 )
Change subject: RSL_Emulation: Fail explicitly on ASP_IPA_EVENT_DOWN
......................................................................
RSL_Emulation: Fail explicitly on ASP_IPA_EVENT_DOWN
Otherwise RSL layer fails this way when this event is received:
RSL_Emulation.ttcn:429 Receive operation on port IPA_PT succeeded, message from
TC_chan_act_a51-RSL-IPA(3): @IPA_Emulation.ASP_IPA_Event: { up_down :=
ASP_IPA_EVENT_DOWN (0) } id 9
- Function main_client was stopped. PTC terminates.
RSL_Emulation.ttcn:429 Message with id 9 was extracted from the queue of IPA_PT.
RSL_Emulation.ttcn:430 setverdict(fail): none -> fail reason: "Received unknown
primitive from IPA", new component reason: "Received unknown primitive from IPA"
We now fail with a clearer message "Lost IPA connection!". These
failures seem to happen under high load when the BTS doesn't get a
steady clock from osmo-trx.
Change-Id: Idc6565c9de72d98015d56a41e5616c46051c8a8d
---
M library/RSL_Emulation.ttcn
1 file changed, 8 insertions(+), 0 deletions(-)
Approvals:
Jenkins Builder: Verified
Pau Espin Pedrol: Looks good to me, approved
diff --git a/library/RSL_Emulation.ttcn b/library/RSL_Emulation.ttcn
index c56c278..cf02d00 100644
--- a/library/RSL_Emulation.ttcn
+++ b/library/RSL_Emulation.ttcn
@@ -23,6 +23,7 @@
* (at your option) any later version.
*/
+import from Misc_Helpers all;
import from General_Types all;
import from Osmocom_Types all;
import from GSM_Types all;
@@ -346,6 +347,13 @@
[not bts_role] IPA_PT.receive(ASP_IPA_Event:{up_down :=
ASP_IPA_EVENT_UP}) -> value evt {
CCHAN_PT.send(evt);
}
+ [bts_role] IPA_PT.receive(ASP_IPA_Event:{up_down :=
ASP_IPA_EVENT_DOWN}) {
+ Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
"Lost IPA connection!");
+
+ }
+ [not bts_role] IPA_PT.receive(ASP_IPA_Event:{up_down :=
ASP_IPA_EVENT_DOWN}) {
+ Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
"Lost IPA connection!");
+ }
[bts_role] IPA_PT.receive(ASP_IPA_Event:{up_down :=
ASP_IPA_EVENT_ID_ACK}) {
IPA_PT.send(ts_ASP_RSL_UD(IPAC_PROTO_RSL_TRX0,ts_RSL_PAGING_LOAD_IND(23)));
}
--
To view, visit https://gerrit.osmocom.org/11429
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: Idc6565c9de72d98015d56a41e5616c46051c8a8d
Gerrit-Change-Number: 11429
Gerrit-PatchSet: 5
Gerrit-Owner: Pau Espin Pedrol <[email protected]>
Gerrit-Reviewer: Jenkins Builder (1000002)
Gerrit-Reviewer: Pau Espin Pedrol <[email protected]>
Gerrit-Reviewer: daniel <[email protected]>
Gerrit-CC: Harald Welte <[email protected]>