lists.osmocom.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
June
May
April
March
February
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
List overview
Download
gerrit-log
April 2022
----- 2025 -----
June 2025
May 2025
April 2025
March 2025
February 2025
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
gerrit-log@lists.osmocom.org
2 participants
1754 discussions
Start a n
N
ew thread
Change in osmo-bsc[master]: Move struct gsm_bts_paging_state to paging.h
by pespin
pespin has submitted this change. (
https://gerrit.osmocom.org/c/osmo-bsc/+/27866
) Change subject: Move struct gsm_bts_paging_state to paging.h ...................................................................... Move struct gsm_bts_paging_state to paging.h Change-Id: I8c058d308fc816828b5e6a86e7c5a1f629a2d7c4 --- M include/osmocom/bsc/bts.h M include/osmocom/bsc/gsm_data.h M include/osmocom/bsc/paging.h M src/ipaccess/Makefile.am M src/utils/Makefile.am M tests/abis/Makefile.am M tests/acc/Makefile.am M tests/codec_pref/Makefile.am M tests/gsm0408/Makefile.am M tests/nanobts_omlattr/Makefile.am M tests/subscr/Makefile.am 11 files changed, 38 insertions(+), 22 deletions(-) Approvals: laforge: Looks good to me, but someone else must approve pespin: Looks good to me, approved osmith: Looks good to me, but someone else must approve Jenkins Builder: Verified diff --git a/include/osmocom/bsc/bts.h b/include/osmocom/bsc/bts.h index cd0f8cb..95d9b05 100644 --- a/include/osmocom/bsc/bts.h +++ b/include/osmocom/bsc/bts.h @@ -17,6 +17,7 @@ #include "osmocom/bsc/bts_trx.h" #include "osmocom/bsc/bts_sm.h" #include "osmocom/bsc/abis_om2000.h" +#include "osmocom/bsc/paging.h" enum bts_counter_id { BTS_CTR_CHREQ_TOTAL, diff --git a/include/osmocom/bsc/gsm_data.h b/include/osmocom/bsc/gsm_data.h index 4a58c2b..b478ba0 100644 --- a/include/osmocom/bsc/gsm_data.h +++ b/include/osmocom/bsc/gsm_data.h @@ -962,26 +962,6 @@ #define GSM_LCHAN_SI(lchan, i) (void *)((lchan)->si.buf[i][0]) -/* - * This keeps track of the paging status of one BTS. It - * includes a number of pending requests, a back pointer - * to the gsm_bts, a timer and some more state. - */ -struct gsm_bts_paging_state { - /* pending requests */ - struct llist_head pending_requests; - struct gsm_bts *bts; - - struct osmo_timer_list work_timer; - struct osmo_timer_list credit_timer; - - /* free chans needed */ - int free_chans_need; - - /* load */ - uint16_t available_slots; -}; - struct gsm_envabtse { struct gsm_abis_mo mo; }; diff --git a/include/osmocom/bsc/paging.h b/include/osmocom/bsc/paging.h index dd3d316..c4381fa 100644 --- a/include/osmocom/bsc/paging.h +++ b/include/osmocom/bsc/paging.h @@ -89,6 +89,26 @@ enum bsc_paging_reason reason; }; +/* + * This keeps track of the paging status of one BTS. It + * includes a number of pending requests, a back pointer + * to the gsm_bts, a timer and some more state. + */ +struct gsm_bts_paging_state { + /* pending requests */ + struct llist_head pending_requests; + struct gsm_bts *bts; + + struct osmo_timer_list work_timer; + struct osmo_timer_list credit_timer; + + /* free chans needed */ + int free_chans_need; + + /* load */ + uint16_t available_slots; +}; + void paging_init(struct gsm_bts *bts); /* schedule paging request */ diff --git a/src/ipaccess/Makefile.am b/src/ipaccess/Makefile.am index 9a9fff6..9bd648d 100644 --- a/src/ipaccess/Makefile.am +++ b/src/ipaccess/Makefile.am @@ -9,6 +9,8 @@ $(LIBOSMOCORE_CFLAGS) \ $(LIBOSMOGSM_CFLAGS) \ $(LIBOSMOABIS_CFLAGS) \ + $(LIBOSMONETIF_CFLAGS) \ + $(LIBOSMOSIGTRAN_CFLAGS) \ $(COVERAGE_CFLAGS) \ $(NULL) diff --git a/src/utils/Makefile.am b/src/utils/Makefile.am index 1d6c48e..18debe7 100644 --- a/src/utils/Makefile.am +++ b/src/utils/Makefile.am @@ -9,6 +9,8 @@ $(LIBOSMOCORE_CFLAGS) \ $(LIBOSMOGSM_CFLAGS) \ $(LIBOSMOABIS_CFLAGS) \ + $(LIBOSMONETIF_CFLAGS) \ + $(LIBOSMOSIGTRAN_CFLAGS) \ $(COVERAGE_CFLAGS) \ $(SQLITE3_CFLAGS) \ $(NULL) diff --git a/tests/abis/Makefile.am b/tests/abis/Makefile.am index 2fa6b30..d17eff8 100644 --- a/tests/abis/Makefile.am +++ b/tests/abis/Makefile.am @@ -7,8 +7,10 @@ -Wall \ -ggdb3 \ $(LIBOSMOCORE_CFLAGS) \ - $(LIBOSMOABIS_CFLAGS) \ $(LIBOSMOGSM_CFLAGS) \ + $(LIBOSMOABIS_CFLAGS) \ + $(LIBOSMONETIF_CFLAGS) \ + $(LIBOSMOSIGTRAN_CFLAGS) \ $(COVERAGE_CFLAGS) \ $(NULL) diff --git a/tests/acc/Makefile.am b/tests/acc/Makefile.am index 2c41666..a169c5c 100644 --- a/tests/acc/Makefile.am +++ b/tests/acc/Makefile.am @@ -7,8 +7,10 @@ -Wall \ -ggdb3 \ $(LIBOSMOCORE_CFLAGS) \ - $(LIBOSMOABIS_CFLAGS) \ $(LIBOSMOGSM_CFLAGS) \ + $(LIBOSMOABIS_CFLAGS) \ + $(LIBOSMONETIF_CFLAGS) \ + $(LIBOSMOSIGTRAN_CFLAGS) \ $(COVERAGE_CFLAGS) \ $(NULL) diff --git a/tests/codec_pref/Makefile.am b/tests/codec_pref/Makefile.am index b16f282..ec25da5 100644 --- a/tests/codec_pref/Makefile.am +++ b/tests/codec_pref/Makefile.am @@ -8,6 +8,7 @@ $(LIBOSMOCORE_CFLAGS) \ $(LIBOSMOGSM_CFLAGS) \ $(LIBOSMOABIS_CFLAGS) \ + $(LIBOSMONETIF_CFLAGS) \ $(LIBOSMOSIGTRAN_CFLAGS) \ $(NULL) diff --git a/tests/gsm0408/Makefile.am b/tests/gsm0408/Makefile.am index e078610..4802025 100644 --- a/tests/gsm0408/Makefile.am +++ b/tests/gsm0408/Makefile.am @@ -9,6 +9,8 @@ $(LIBOSMOGSM_CFLAGS) \ $(LIBOSMOCTRL_CFLAGS) \ $(LIBOSMOABIS_CFLAGS) \ + $(LIBOSMONETIF_CFLAGS) \ + $(LIBOSMOSIGTRAN_CFLAGS) \ $(NULL) check_PROGRAMS = \ diff --git a/tests/nanobts_omlattr/Makefile.am b/tests/nanobts_omlattr/Makefile.am index 9b16a3c..8c64356 100644 --- a/tests/nanobts_omlattr/Makefile.am +++ b/tests/nanobts_omlattr/Makefile.am @@ -8,6 +8,8 @@ $(LIBOSMOCORE_CFLAGS) \ $(LIBOSMOGSM_CFLAGS) \ $(LIBOSMOABIS_CFLAGS) \ + $(LIBOSMONETIF_CFLAGS) \ + $(LIBOSMOSIGTRAN_CFLAGS) \ $(NULL) check_PROGRAMS = \ diff --git a/tests/subscr/Makefile.am b/tests/subscr/Makefile.am index 329b6c0..e18b96a 100644 --- a/tests/subscr/Makefile.am +++ b/tests/subscr/Makefile.am @@ -9,6 +9,8 @@ $(LIBOSMOCORE_CFLAGS) \ $(LIBOSMOGSM_CFLAGS) \ $(LIBOSMOABIS_CFLAGS) \ + $(LIBOSMONETIF_CFLAGS) \ + $(LIBOSMOSIGTRAN_CFLAGS) \ $(LIBSMPP34_CFLAGS) \ $(COVERAGE_CFLAGS) \ $(NULL) -- To view, visit
https://gerrit.osmocom.org/c/osmo-bsc/+/27866
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc Gerrit-Branch: master Gerrit-Change-Id: I8c058d308fc816828b5e6a86e7c5a1f629a2d7c4 Gerrit-Change-Number: 27866 Gerrit-PatchSet: 4 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de> Gerrit-Reviewer: laforge <laforge(a)osmocom.org> Gerrit-Reviewer: neels <nhofmeyr(a)sysmocom.de> Gerrit-Reviewer: osmith <osmith(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-CC: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-MessageType: merged
3 years, 2 months
1
0
0
0
Change in osmo-bsc[master]: paging: Use define available in libosmogsm
by pespin
pespin has submitted this change. (
https://gerrit.osmocom.org/c/osmo-bsc/+/27878
) Change subject: paging: Use define available in libosmogsm ...................................................................... paging: Use define available in libosmogsm Change-Id: I6425a9cb1100391404d79ead66dfb1337bbcbcab --- M src/osmo-bsc/paging.c 1 file changed, 1 insertion(+), 2 deletions(-) Approvals: fixeria: Looks good to me, approved Jenkins Builder: Verified diff --git a/src/osmo-bsc/paging.c b/src/osmo-bsc/paging.c index 512f39c..73c1175 100644 --- a/src/osmo-bsc/paging.c +++ b/src/osmo-bsc/paging.c @@ -288,8 +288,7 @@ log_set_context(LOG_CTX_BSC_SUBSCR, NULL); } -#define GSM_FRAME_DURATION_us 4615 -#define GSM51_MFRAME_DURATION_us (51 * GSM_FRAME_DURATION_us) /* 235365 us */ +#define GSM51_MFRAME_DURATION_us (51 * GSM_TDMA_FN_DURATION_uS) /* 235365 us */ static unsigned int calculate_timer_3113(struct gsm_bts *bts) { unsigned int to_us, to; 1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. -- To view, visit
https://gerrit.osmocom.org/c/osmo-bsc/+/27878
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc Gerrit-Branch: master Gerrit-Change-Id: I6425a9cb1100391404d79ead66dfb1337bbcbcab Gerrit-Change-Number: 27878 Gerrit-PatchSet: 3 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-MessageType: merged
3 years, 2 months
1
0
0
0
Change in osmo-bsc[master]: rsl_rx_ccch_load: add explicit cast -1 to unsigned
by pespin
Attention is currently required from: daniel. pespin has posted comments on this change. (
https://gerrit.osmocom.org/c/osmo-bsc/+/27879
) Change subject: rsl_rx_ccch_load: add explicit cast -1 to unsigned ...................................................................... Patch Set 2: (1 comment) Patchset: PS2: ok since everybody else seems to prefer something else than -1 I'll change it. -- To view, visit
https://gerrit.osmocom.org/c/osmo-bsc/+/27879
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc Gerrit-Branch: master Gerrit-Change-Id: I02ad80e5d10f1a47cdf712f7f7c576a2e20fe607 Gerrit-Change-Number: 27879 Gerrit-PatchSet: 2 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: daniel <dwillmann(a)sysmocom.de> Gerrit-Reviewer: laforge <laforge(a)osmocom.org> Gerrit-Reviewer: osmith <osmith(a)sysmocom.de> Gerrit-CC: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Attention: daniel <dwillmann(a)sysmocom.de> Gerrit-Comment-Date: Mon, 25 Apr 2022 08:35:52 +0000 Gerrit-HasComments: Yes Gerrit-Has-Labels: No Gerrit-MessageType: comment
3 years, 2 months
1
0
0
0
Change in osmo-bsc[master]: Move struct gsm_bts_paging_state to paging.h
by pespin
Attention is currently required from: neels, dexter. pespin has posted comments on this change. (
https://gerrit.osmocom.org/c/osmo-bsc/+/27866
) Change subject: Move struct gsm_bts_paging_state to paging.h ...................................................................... Patch Set 3: Code-Review+2 -- To view, visit
https://gerrit.osmocom.org/c/osmo-bsc/+/27866
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc Gerrit-Branch: master Gerrit-Change-Id: I8c058d308fc816828b5e6a86e7c5a1f629a2d7c4 Gerrit-Change-Number: 27866 Gerrit-PatchSet: 3 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de> Gerrit-Reviewer: laforge <laforge(a)osmocom.org> Gerrit-Reviewer: neels <nhofmeyr(a)sysmocom.de> Gerrit-Reviewer: osmith <osmith(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-CC: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Attention: neels <nhofmeyr(a)sysmocom.de> Gerrit-Attention: dexter <pmaier(a)sysmocom.de> Gerrit-Comment-Date: Mon, 25 Apr 2022 08:35:23 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
3 years, 2 months
1
0
0
0
Change in osmo-ttcn3-hacks[master]: pgw: Add TC_gy_charging_cc_time
by pespin
pespin has posted comments on this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/27854
) Change subject: pgw: Add TC_gy_charging_cc_time ...................................................................... Patch Set 2: (1 comment) Patchset: PS2: ping -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/27854
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: Ie4e567f62bbbdba276e6b3221111c8d9f82cde14 Gerrit-Change-Number: 27854 Gerrit-PatchSet: 2 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: laforge <laforge(a)osmocom.org> Gerrit-CC: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Comment-Date: Mon, 25 Apr 2022 08:35:03 +0000 Gerrit-HasComments: Yes Gerrit-Has-Labels: No Gerrit-MessageType: comment
3 years, 2 months
1
0
0
0
Change in osmo-ttcn3-hacks[master]: bsc: Introduce test TC_paging_500req
by pespin
pespin has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/27890
) Change subject: bsc: Introduce test TC_paging_500req ...................................................................... bsc: Introduce test TC_paging_500req Related: SYS#5922 Change-Id: I4f7185939c20804deef92f476ed19248ba885f29 --- M bsc/BSC_Tests.ttcn 1 file changed, 61 insertions(+), 0 deletions(-) Approvals: Jenkins Builder: Verified fixeria: Looks good to me, but someone else must approve laforge: Looks good to me, approved diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn index 3a40d8d..e17285e 100644 --- a/bsc/BSC_Tests.ttcn +++ b/bsc/BSC_Tests.ttcn @@ -3583,6 +3583,66 @@ f_shutdown_helper(); } +/* Verify BSC can schedule 500 paging requests under one minute if BTS buffer is good enough */ +testcase TC_paging_500req() runs on test_CT { + var ASP_RSL_Unitdata rx_rsl_ud; + const integer num_subscribers := 500; + var hexstring imsis[num_subscribers]; + var boolean rx_paging_done[num_subscribers]; + var integer rx_paging_num := 0; + var integer i; + timer T_rx := 60.0; + timer T_load_ind := 1.0; + + for (i := 0; i < num_subscribers; i := i + 1) { + imsis[i] := f_gen_imsi(i); + rx_paging_done[i] := false; + } + + f_init(1, guard_timeout := 100.0); + + /* Clear the queue, it might still contain stuff like BCCH FILLING */ + IPA_RSL[0].clear; + /* Tell there's plenty of space at the BTS (UINT16_MAX): */ + f_ipa_tx(0, ts_RSL_PAGING_LOAD_IND(65535)); + + for (i := 0; i < num_subscribers; i := i + 1) { + BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[0].sccp_addr_peer, g_bssap[0].sccp_addr_own, + ts_BSSMAP_Paging(imsis[i], valueof(ts_BSSMAP_CIL_noCell), omit, omit))); + } + + T_rx.start; + T_load_ind.start; + alt { + [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?), IPAC_PROTO_RSL_TRX0)) -> value rx_rsl_ud { + var hexstring imsi := rx_rsl_ud.rsl.ies[2].body.ms_identity.mobileIdentityV.oddEvenInd_identity.imsi.digits; + var hexstring imsi_suffix := substr(imsi, lengthof(imsi)-6, 6); + var charstring imsi_str := hex2str(imsi_suffix); + var integer imsi_idx := str2int(imsi_str); + if (rx_paging_done[imsi_idx] == false) { + rx_paging_done[imsi_idx] := true; + rx_paging_num := rx_paging_num + 1; + } + if (rx_paging_num < num_subscribers) { + repeat; + } + } + [] IPA_RSL[0].receive { repeat; } + [] T_load_ind.timeout { + log("Tx CCH Load Ind, received paging requests so far: ", rx_paging_num); + f_ipa_tx(0, ts_RSL_PAGING_LOAD_IND(40)); + T_load_ind.start; + repeat; + } + [] T_rx.timeout { + setverdict(fail, "Timeout expecting paging requests, so far ", rx_paging_num); + mtc.stop; + } + } + + f_shutdown_helper(); +} + /* Test RSL link drop causes counter increment */ testcase TC_rsl_drop_counter() runs on test_CT { var integer rsl_fail; @@ -11441,6 +11501,7 @@ execute( TC_paging_imsi_load() ); execute( TC_paging_counter() ); execute( TC_paging_resp_unsol() ); + execute( TC_paging_500req() ); execute( TC_rsl_drop_counter() ); execute( TC_rsl_unknown_unit_id() ); -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/27890
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I4f7185939c20804deef92f476ed19248ba885f29 Gerrit-Change-Number: 27890 Gerrit-PatchSet: 3 Gerrit-Owner: pespin <pespin(a)sysmocom.de> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Reviewer: laforge <laforge(a)osmocom.org> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-MessageType: merged
3 years, 2 months
1
0
0
0
Change in osmo-ci[master]: dahdi-linux: Add gerrit build verification against master
by osmith
Attention is currently required from: laforge. osmith has posted comments on this change. (
https://gerrit.osmocom.org/c/osmo-ci/+/27913
) Change subject: dahdi-linux: Add gerrit build verification against master ...................................................................... Patch Set 1: Code-Review+2 (1 comment) Patchset: PS1: nice! -- To view, visit
https://gerrit.osmocom.org/c/osmo-ci/+/27913
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci Gerrit-Branch: master Gerrit-Change-Id: I86cfd7e868dcaeeb6c6dbc6f08046a70b4582cc7 Gerrit-Change-Number: 27913 Gerrit-PatchSet: 1 Gerrit-Owner: laforge <laforge(a)osmocom.org> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: osmith <osmith(a)sysmocom.de> Gerrit-Attention: laforge <laforge(a)osmocom.org> Gerrit-Comment-Date: Mon, 25 Apr 2022 07:55:17 +0000 Gerrit-HasComments: Yes Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
3 years, 2 months
1
0
0
0
Change in osmo-ci[master]: dahdi: use buster, not stretch
by osmith
Attention is currently required from: laforge. osmith has posted comments on this change. (
https://gerrit.osmocom.org/c/osmo-ci/+/27908
) Change subject: dahdi: use buster, not stretch ...................................................................... Patch Set 2: Code-Review+2 -- To view, visit
https://gerrit.osmocom.org/c/osmo-ci/+/27908
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci Gerrit-Branch: master Gerrit-Change-Id: I4fca722e67b2c649dea4f9799d277cd568bcc493 Gerrit-Change-Number: 27908 Gerrit-PatchSet: 2 Gerrit-Owner: laforge <laforge(a)osmocom.org> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: osmith <osmith(a)sysmocom.de> Gerrit-Attention: laforge <laforge(a)osmocom.org> Gerrit-Comment-Date: Mon, 25 Apr 2022 07:55:09 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes Gerrit-MessageType: comment
3 years, 2 months
1
0
0
0
Build failure of network:osmocom:nightly/osmo-msc in Debian_Testing/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/o…
Package network:osmocom:nightly/osmo-msc failed to build in Debian_Testing/x86_64 Check out the package for editing: osc checkout network:osmocom:nightly osmo-msc Last lines of build log: [ 58s] No diversion 'diversion of /usr/share/man/man1/sh.1.gz by bash', none removed. [ 58s] Adding 'diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash' [ 58s] Processing triggers for debianutils (5.7-0.1) ... [ 58s] [291/507] installing grep-3.7-1 [ 58s] [292/507] installing libatk1.0-0-2.38.0-1 [ 59s] Processing triggers for libc-bin (2.33-7) ... [ 59s] [293/507] installing libavahi-client3-0.8-5 [ 59s] Processing triggers for libc-bin (2.33-7) ... [ 59s] [294/507] installing libdbus-glib-1-2-0.112-2 [ 59s] Processing triggers for libc-bin (2.33-7) ... [ 59s] [295/507] installing libosmocodec0-1.6.0.94.b0c2.202204250026 [ 59s] Processing triggers for libc-bin (2.33-7) ... [ 59s] [296/507] installing libx11-6-2:1.7.5-1 [ 59s] Processing triggers for libc-bin (2.33-7) ... [ 59s] [297/507] installing perl-base-5.34.0-4 [ 59s] [298/507] installing shared-mime-info-2.1-2 [ 60s] update-mime-database: error while loading shared libraries: libicuuc.so.71: cannot open shared object file: No such file or directory [ 60s] dpkg: error processing package shared-mime-info (--install): [ 60s] installed shared-mime-info package post-installation script subprocess returned error exit status 127 [ 60s] Errors were encountered while processing: [ 60s] shared-mime-info [ 60s] exit ... [ 60s] ### VM INTERACTION START ### [ 60s] [ 44.936682][ T1] sysrq: Power Off [ 60s] [ 44.944194][ T16] reboot: Power down [ 60s] ### VM INTERACTION END ### [ 60s] [ 60s] cloud108 failed "build osmo-msc_1.8.0.18.c628.202204250026.dsc" at Mon Apr 25 03:39:21 UTC 2022. [ 60s] -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
3 years, 2 months
1
0
0
0
Build failure of network:osmocom:nightly/osmo-sgsn in Debian_Testing/x86_64
by OBS Notification
Visit
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/o…
Package network:osmocom:nightly/osmo-sgsn failed to build in Debian_Testing/x86_64 Check out the package for editing: osc checkout network:osmocom:nightly osmo-sgsn Last lines of build log: [ 115s] No diversion 'diversion of /usr/share/man/man1/sh.1.gz by bash', none removed. [ 115s] Adding 'diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash' [ 115s] Processing triggers for debianutils (5.7-0.1) ... [ 115s] [288/504] installing grep-3.7-1 [ 116s] [289/504] installing libatk1.0-0-2.38.0-1 [ 116s] Processing triggers for libc-bin (2.33-7) ... [ 116s] [290/504] installing libavahi-client3-0.8-5 [ 116s] Processing triggers for libc-bin (2.33-7) ... [ 116s] [291/504] installing libdbus-glib-1-2-0.112-2 [ 116s] Processing triggers for libc-bin (2.33-7) ... [ 116s] [292/504] installing libosmocodec0-1.6.0.94.b0c2.202204250026 [ 116s] Processing triggers for libc-bin (2.33-7) ... [ 116s] [293/504] installing libx11-6-2:1.7.5-1 [ 116s] Processing triggers for libc-bin (2.33-7) ... [ 116s] [294/504] installing perl-base-5.34.0-4 [ 117s] [295/504] installing shared-mime-info-2.1-2 [ 118s] update-mime-database: error while loading shared libraries: libicuuc.so.71: cannot open shared object file: No such file or directory [ 118s] dpkg: error processing package shared-mime-info (--install): [ 118s] installed shared-mime-info package post-installation script subprocess returned error exit status 127 [ 118s] Errors were encountered while processing: [ 118s] shared-mime-info [ 118s] exit ... [ 118s] ### VM INTERACTION START ### [ 118s] [ 76.885788][ T1] sysrq: Power Off [ 118s] [ 76.925857][ T16] reboot: Power down [ 118s] ### VM INTERACTION END ### [ 118s] [ 118s] lamb13 failed "build osmo-sgsn_1.8.0.7.199f2.202204250026.dsc" at Mon Apr 25 03:35:39 UTC 2022. [ 118s] -- Configure notifications at
https://build.opensuse.org/my/subscriptions
openSUSE Build Service (
https://build.opensuse.org/
)
3 years, 2 months
1
0
0
0
← Newer
1
...
47
48
49
50
51
52
53
...
176
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
Results per page:
10
25
50
100
200