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
2026
June
May
April
March
February
January
2025
December
November
October
September
August
July
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
February 2026
----- 2026 -----
June 2026
May 2026
April 2026
March 2026
February 2026
January 2026
----- 2025 -----
December 2025
November 2025
October 2025
September 2025
August 2025
July 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
1 participants
1500 discussions
Start a n
N
ew thread
[M] Change in osmo-ttcn3-hacks[master]: remsim: server: add a client timeout test
by lynxis lazus
19 Feb '26
19 Feb '26
lynxis lazus has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42154?usp=email
) Change subject: remsim: server: add a client timeout test ...................................................................... remsim: server: add a client timeout test 1. Connect to the server 2. Don't answer to IPA PINGs 3. Server closes the connection 4. Client reconnects 5. Older server versions will crash Change-Id: Iec52d3ce229c2ab84ab0ff9d8dbbff59b7f3fbd9 --- M remsim/REMSIM_Tests.ttcn M remsim/RemsimServer_Tests.ttcn 2 files changed, 69 insertions(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/54/42154/1 diff --git a/remsim/REMSIM_Tests.ttcn b/remsim/REMSIM_Tests.ttcn index b97dea1..92c932c 100644 --- a/remsim/REMSIM_Tests.ttcn +++ b/remsim/REMSIM_Tests.ttcn @@ -14,6 +14,7 @@ import from RSPRO all; import from RSPRO_Types all; import from IPA_Types all; +import from IPA_CodecPort all; import from IPA_Emulation all; @@ -43,6 +44,8 @@ type component rspro_client_CT { var RSPRO_Client rspro[NUM_CLIENT]; port IPA_RSPRO_PT RSPRO[NUM_CLIENT]; + port IPA_CFG_PT IPACFG[NUM_CLIENT]; + port IPA_SP_PT IPAPORT[NUM_CLIENT]; }; private altstep as_ignore_id_ack(integer i := 0) runs on rspro_client_CT { @@ -68,6 +71,8 @@ map(clnt.vc_IPA:IPA_PORT, system:IPA_CODEC_PT); connect(clnt.vc_IPA:IPA_RSPRO_PORT, self:RSPRO[i]); + connect(clnt.vc_IPA:CFG_PORT, self:IPACFG[i]); + connect(clnt.vc_IPA:IPA_SP_PORT, self:IPAPORT[i]); clnt.vc_IPA.start(IPA_Emulation.main_client(dst_host, dst_port, "", 10000+i, clnt.ccm_pars)); @@ -96,6 +101,8 @@ runs on rspro_client_CT { clnt.vc_IPA.stop; disconnect(clnt.vc_IPA:IPA_RSPRO_PORT, self:RSPRO[i]); + disconnect(clnt.vc_IPA:CFG_PORT, self:IPACFG[i]); + disconnect(clnt.vc_IPA:IPA_SP_PORT, self:IPAPORT[i]); unmap(clnt.vc_IPA:IPA_PORT, system:IPA_CODEC_PT); } diff --git a/remsim/RemsimServer_Tests.ttcn b/remsim/RemsimServer_Tests.ttcn index 23ea8cb..2901d48 100644 --- a/remsim/RemsimServer_Tests.ttcn +++ b/remsim/RemsimServer_Tests.ttcn @@ -22,6 +22,7 @@ import from Misc_Helpers all; import from IPA_Emulation all; +import from IPA_Types all; import from HTTPmsg_Types all; import from HTTPmsg_PortType all; @@ -177,6 +178,66 @@ setverdict(pass); } +/* A client connects and stops answering to IPA PING/PONGs. + Do a re-connect. Older version of the server will crash. */ +testcase TC_connect_client_timeout_reconnect() runs on test_CT { + var ComponentIdentity rspro_id := valueof(ts_CompId(remsimClient, "foobar")); + var JsRoot js; + timer T := 80.0; + + f_init(); + g_T_guard.start(180.0); + f_rsres_init(); + f_rspro_init(rspro[0], mp_server_ip, mp_server_port, rspro_id, 0); + rspro[0].rspro_client_slot := valueof(ts_ClientSlot(13,1)); + + js := f_rsres_get("/api/backend/v1/clients"); + if (not match(js.clients, JsClients:{})) { + setverdict(fail, "Initial state not empty"); + mtc.stop; + } + f_rspro_connect_client(0); + js := f_rsres_get("/api/backend/v1/clients"); + if (not match(js.clients[0], tr_JsClient(CONNECTED_CLIENT, rspro[0].rspro_id))) { + setverdict(fail, "Non-matching JSON response"); + mtc.stop; + } + + /* stop answering IPA Ping */ + var IpaCcmMsgtype ipa_ping_msg := IPAC_MSGT_PING; + var octetstring ipa_ping_data := int2oct(enum2int(ipa_ping_msg), 1); + + f_ipa_cfg_chg_ccm_enabled(IPACFG[0], false); + T.start; + alt { + [] IPAPORT[0].receive(t_ASP_IPA_UD(IPAC_PROTO_CCM, ipa_ping_data)) { + log("Received PING. Not answering it."); + repeat; + } + [] RSPRO[0].receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_DOWN)) {} + [] T.timeout { + setverdict(fail, "Timed out. Server did not closed the connection."); + mtc.stop; + } + } + + + /* connect a second time for same Client ID */ + f_rspro_init(rspro[1], mp_server_ip, mp_server_port, rspro_id, 1); + rspro[1].rspro_client_slot := valueof(ts_ClientSlot(13,1)); + f_rspro_connect_client(1); + + /* expect the first connection still to be active */ + js := f_rsres_get("/api/backend/v1/clients"); + if (not match(js.clients[0], tr_JsClient(CONNECTED_CLIENT, rspro[1].rspro_id))) { + setverdict(fail, "Non-matching JSON response"); + mtc.stop; + } + + setverdict(pass); +} + + testcase TC_connect_bank() runs on test_CT { var ComponentIdentity rspro_id := valueof(ts_CompId(remsimBankd, "foobar")); var JsRoot js; @@ -597,6 +658,7 @@ execute( TC_connect_and_nothing() ); execute( TC_connect_client() ); execute( TC_connect_client_duplicate() ); + execute( TC_connect_client_timeout_reconnect() ); execute( TC_connect_bank() ); execute( TC_connect_bank_duplicate() ); execute( TC_slotmap_add() ); -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42154?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: Iec52d3ce229c2ab84ab0ff9d8dbbff59b7f3fbd9 Gerrit-Change-Number: 42154 Gerrit-PatchSet: 1 Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>
1
0
0
0
[S] Change in osmo-ttcn3-hacks[master]: 5gc: Split f_start_handleri_with_pars() into multiple helpers
by pespin
19 Feb '26
19 Feb '26
pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42153?usp=email
) Change subject: 5gc: Split f_start_handleri_with_pars() into multiple helpers ...................................................................... 5gc: Split f_start_handleri_with_pars() into multiple helpers This allows initializing multiple ConnHldr and then connecting them and starting them later. This is similar to what is is done eg. in MSC_Tests. Change-Id: Ic60009c5f7fcdc43f6e13f9ea469bfaddc639c33 --- M 5gc/C5G_Tests.ttcn 1 file changed, 20 insertions(+), 8 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/53/42153/1 diff --git a/5gc/C5G_Tests.ttcn b/5gc/C5G_Tests.ttcn index b5a572a..3844f95 100644 --- a/5gc/C5G_Tests.ttcn +++ b/5gc/C5G_Tests.ttcn @@ -196,21 +196,21 @@ } /* generate parameters for a connection handler */ -private function f_init_pars(integer ue_idx := 0) +private function f_init_pars(integer ue_idx := 0, integer c5g_idx := 0) runs on MTC_CT return ConnHdlrPars { var ConnHdlrPars pars := { ngran_pars := g_ngran_pars, ue_pars := valueof(ts_UeParams(ue_idx)), - c5g_idx := 0, + c5g_idx := c5g_idx, kset_id := valueof(cs_NAS_KeySetIdentifier_lv(tsc_NasKsi_NoKey, '0'B)), exp_CoreNetworkAssistanceInformationForInactive := false }; return pars; } -/* start a connection handler with given parameters */ -private function f_start_handler_with_pars(void_fn fn, ConnHdlrPars pars, integer ngap_idx := 0) -runs on MTC_CT return ConnHdlr { +private function f_start_handler_create(integer ngap_idx := 0) +runs on MTC_CT return ConnHdlr +{ var ConnHdlr vc_conn; var charstring id := testcasename() & int2str(ngap_idx); @@ -223,14 +223,26 @@ connect(vc_conn:GTP1U[0], vc_GTP1U:CLIENT); connect(vc_conn:GTP1U_PROC[0], vc_GTP1U:CLIENT_PROC); - /* We cannot use vc_conn.start(f_init_handler(fn, id, pars)); as we cannot have - * a stand-alone 'derefers()' call, see
https://www.eclipse.org/forums/index.php/t/1091364/
*/ + return vc_conn; +} + +private function f_start_handler_run(ConnHdlr vc_conn, void_fn fn, ConnHdlrPars pars) runs on MTC_CT +{ vc_conn.start(f_init_handler(fn, pars)); +} + +/* start a connection handler with given parameters */ +private function f_start_handler_with_pars(void_fn fn, ConnHdlrPars pars, integer ngap_idx := 0) +runs on MTC_CT return ConnHdlr { + var ConnHdlr vc_conn; + vc_conn := f_start_handler_create(ngap_idx); + f_start_handler_run(vc_conn, fn, pars); + return vc_conn; } /* altstep for the global guard timer */ -private altstep as_Tguard()runs on MTC_CT { +private altstep as_Tguard() runs on MTC_CT { [] g_Tguard.timeout { Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Tguard timeout"); } -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42153?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: Ic60009c5f7fcdc43f6e13f9ea469bfaddc639c33 Gerrit-Change-Number: 42153 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de>
1
0
0
0
[XS] Change in osmo-ttcn3-hacks[master]: 5gc: Add missing TC_connection_suspend to control block
by pespin
19 Feb '26
19 Feb '26
pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42152?usp=email
) Change subject: 5gc: Add missing TC_connection_suspend to control block ...................................................................... 5gc: Add missing TC_connection_suspend to control block Fixes: 1af55d318d43967ee5d056bdf2bc3a50c096389b Change-Id: I2e9e3647917f22e16d9dd6e7199f62a305cc57b3 --- M 5gc/C5G_Tests.ttcn 1 file changed, 1 insertion(+), 0 deletions(-) git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/52/42152/1 diff --git a/5gc/C5G_Tests.ttcn b/5gc/C5G_Tests.ttcn index 5a35b5a..b5a572a 100644 --- a/5gc/C5G_Tests.ttcn +++ b/5gc/C5G_Tests.ttcn @@ -624,6 +624,7 @@ execute( TC_net_triggered_service_req() ); execute( TC_connection_inactive() ); + execute( TC_connection_suspend() ); } -- To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42152?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: I2e9e3647917f22e16d9dd6e7199f62a305cc57b3 Gerrit-Change-Number: 42152 Gerrit-PatchSet: 1 Gerrit-Owner: pespin <pespin(a)sysmocom.de>
1
0
0
0
[M] Change in osmo-bts[master]: Bump version: 1.10.0.36-b9839-dirty → 1.11.0
by pespin
19 Feb '26
19 Feb '26
pespin has submitted this change. (
https://gerrit.osmocom.org/c/osmo-bts/+/42151?usp=email
) Change subject: Bump version: 1.10.0.36-b9839-dirty → 1.11.0 ...................................................................... Bump version: 1.10.0.36-b9839-dirty → 1.11.0 Change-Id: I595b31071a071bfa5666931d99e24e9b56877a6f --- M TODO-RELEASE M configure.ac M debian/changelog M debian/control 4 files changed, 51 insertions(+), 8 deletions(-) Approvals: pespin: Looks good to me, approved; Verified fixeria: Looks good to me, but someone else must approve osmith: Looks good to me, approved diff --git a/TODO-RELEASE b/TODO-RELEASE index fb115da..0ed7189 100644 --- a/TODO-RELEASE +++ b/TODO-RELEASE @@ -7,4 +7,3 @@ # If any interfaces have been added since the last public release: c:r:a + 1. # If any interfaces have been removed or changed since the last public release: c:r:0. #library what description / commit summary line -libosmocore >1.12.0 log_get_context(), log_{get,set}_filter(_data)() diff --git a/configure.ac b/configure.ac index 6a9662c..423b710 100644 --- a/configure.ac +++ b/configure.ac @@ -69,12 +69,12 @@ fi dnl checks for libraries -PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.12.0) -PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.12.0) -PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.12.0) -PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.12.0) -PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.12.0) -PKG_CHECK_MODULES(LIBOSMOCODING, libosmocoding >= 1.12.0) +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.13.0) +PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.13.0) +PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.13.0) +PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.13.0) +PKG_CHECK_MODULES(LIBOSMOCODEC, libosmocodec >= 1.13.0) +PKG_CHECK_MODULES(LIBOSMOCODING, libosmocoding >= 1.13.0) PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 2.1.0) PKG_CHECK_MODULES(LIBOSMOTRAU, libosmotrau >= 2.1.0) PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 1.7.0) diff --git a/debian/changelog b/debian/changelog index 3c95489..80fb35f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,47 @@ +osmo-bts (1.11.0) unstable; urgency=medium + + [ Pau Espin Pedrol ] + * bts-trx: Use existing defines for burst sizes instead of hardcoded values + * bts-trx: Set max TRXD buf size to UINT16_MAX + * bts-trx: Convert trx clk socket to iofd + * bts-trx: Convert TRXC and TRXD sockets to iofd + * bts-trx: define TRXD_MSG_BUF_SIZE as a more realistic lower value + * pcu_sock: Use osmo_io + * cosmetic: bts-trx: fix typo in comment + * abis_osmo: Fix reading Abis IPA OSMO_EXT type + * ta_control: Move skip_block logic to helper function + * ta_control: Move variable declaration to the top of the function + * ta_control: Add missing include for lchan.h + * ta_control: Fix skip_block_num not reset when switching TS to PDCH + * ta_control: Reset state during lchan deactivation + * {bs,ms}_power_control: Add helper function to reset state + * {bs,ms}_power_control: Reset state during lchan deactivation + * bs_power_control: Apply defaults during reset + * ms_power_control: Apply defaults during reset + * ta_power_control: reset during lchan activation + * paging: Remove unused function + * vty: document default value for 'paging queue-size' + * {bs,ms}_power_control: Move params inside lchan_power_ctrl_state + * tests: Use log_set_category_filter() libosmocore API + * Avoid accessing struct log_target members directly + + [ Vadim Yanitskiy ] + * doc: osmo-bts-virtual.cfg: drop non-existent logging category + * osmo-bts-{lc15,omldummy,virtual}: drop LIBGPS_{CFLAGS,LIBS} + * debian/control: drop 'txt2man' from Build-Depends + * debian/control: drop 'libgps-dev' from Build-Depends + * bts-trx: get rid of static variables in trx_if_send_burst() + * rsl: rsl_rx_chan_activ(): set TA=0 if not indicated by the BSC + * fixup: rsl: properly initialize MS/BS Power Control state + * doc: fix default 'max-initial' value + * osmo-bts-trx: add missing \n to a logging message + * osmo-bts-trx: trx_provision_fsm: mark internal functions as static + * osmo-bts-trx: trx_provision_fsm: do not send *_CNF events on failure + * osmo-bts-trx: apply 'max-initial' value before POWERON + * power_control: lchan_ms_pwr_ctrl(): always log input values + + -- Pau Espin Pedrol <pespin(a)sysmocom.de> Thu, 19 Feb 2026 13:26:13 +0100 + osmo-bts (1.10.0) unstable; urgency=medium [ Vadim Yanitskiy ] diff --git a/debian/control b/debian/control index f52829c..8a261ca 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ dh-autoreconf, autotools-dev, pkg-config, - libosmocore-dev (>= 1.12.0), + libosmocore-dev (>= 1.13.0), libosmo-abis-dev (>= 2.1.0), libosmo-netif-dev (>= 1.7.0), osmo-gsm-manuals-dev (>= 1.7.0) -- To view, visit
https://gerrit.osmocom.org/c/osmo-bts/+/42151?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged Gerrit-Project: osmo-bts Gerrit-Branch: master Gerrit-Change-Id: I595b31071a071bfa5666931d99e24e9b56877a6f Gerrit-Change-Number: 42151 Gerrit-PatchSet: 1 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: osmith <osmith(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
1
0
0
0
[M] Change in osmo-bts[master]: Bump version: 1.10.0.36-b9839-dirty → 1.11.0
by pespin
19 Feb '26
19 Feb '26
Attention is currently required from: laforge. pespin has posted comments on this change by pespin. (
https://gerrit.osmocom.org/c/osmo-bts/+/42151?usp=email
) Change subject: Bump version: 1.10.0.36-b9839-dirty → 1.11.0 ...................................................................... Patch Set 1: Code-Review+2 Verified+1 (1 comment) Patchset: PS1: Adding +1 for verify since it's expected that obs debian packages fail due to new libosmocore 1.13.0 not generated yet. -- To view, visit
https://gerrit.osmocom.org/c/osmo-bts/+/42151?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment Gerrit-Project: osmo-bts Gerrit-Branch: master Gerrit-Change-Id: I595b31071a071bfa5666931d99e24e9b56877a6f Gerrit-Change-Number: 42151 Gerrit-PatchSet: 1 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: osmith <osmith(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de> Gerrit-Attention: laforge <laforge(a)osmocom.org> Gerrit-Comment-Date: Thu, 19 Feb 2026 13:26:09 +0000 Gerrit-HasComments: Yes Gerrit-Has-Labels: Yes
1
0
0
0
[M] Change in osmo-bts[master]: Bump version: 1.10.0.36-b9839-dirty → 1.11.0
by pespin
19 Feb '26
19 Feb '26
Attention is currently required from: laforge, pespin. pespin has removed a vote from this change. (
https://gerrit.osmocom.org/c/osmo-bts/+/42151?usp=email
) Change subject: Bump version: 1.10.0.36-b9839-dirty → 1.11.0 ...................................................................... Removed Verified-1 by Jenkins Builder (1000002) -- To view, visit
https://gerrit.osmocom.org/c/osmo-bts/+/42151?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: deleteVote Gerrit-Project: osmo-bts Gerrit-Branch: master Gerrit-Change-Id: I595b31071a071bfa5666931d99e24e9b56877a6f Gerrit-Change-Number: 42151 Gerrit-PatchSet: 1 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: osmith <osmith(a)sysmocom.de> Gerrit-Attention: laforge <laforge(a)osmocom.org> Gerrit-Attention: pespin <pespin(a)sysmocom.de>
1
0
0
0
[M] Change in osmo-bts[master]: Bump version: 1.10.0.36-b9839-dirty → 1.11.0
by fixeria
19 Feb '26
19 Feb '26
Attention is currently required from: laforge, pespin. fixeria has posted comments on this change by pespin. (
https://gerrit.osmocom.org/c/osmo-bts/+/42151?usp=email
) Change subject: Bump version: 1.10.0.36-b9839-dirty → 1.11.0 ...................................................................... Patch Set 1: Code-Review+1 -- To view, visit
https://gerrit.osmocom.org/c/osmo-bts/+/42151?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment Gerrit-Project: osmo-bts Gerrit-Branch: master Gerrit-Change-Id: I595b31071a071bfa5666931d99e24e9b56877a6f Gerrit-Change-Number: 42151 Gerrit-PatchSet: 1 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: osmith <osmith(a)sysmocom.de> Gerrit-Attention: laforge <laforge(a)osmocom.org> Gerrit-Attention: pespin <pespin(a)sysmocom.de> Gerrit-Comment-Date: Thu, 19 Feb 2026 13:19:28 +0000 Gerrit-HasComments: No Gerrit-Has-Labels: Yes
1
0
0
0
[M] Change in osmo-bts[master]: Bump version: 1.10.0.36-b9839-dirty → 1.11.0
by pespin
19 Feb '26
19 Feb '26
Attention is currently required from: fixeria, laforge. pespin has posted comments on this change by pespin. (
https://gerrit.osmocom.org/c/osmo-bts/+/42151?usp=email
) Change subject: Bump version: 1.10.0.36-b9839-dirty → 1.11.0 ...................................................................... Patch Set 1: (1 comment) Commit Message:
https://gerrit.osmocom.org/c/osmo-bts/+/42151/comment/c13dae8c_c4dc2331?usp…
: PS1, Line 7: dirty > Why `-dirty`? Looks like something was not committed? This is normal, due to editing configure.ac. -- To view, visit
https://gerrit.osmocom.org/c/osmo-bts/+/42151?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment Gerrit-Project: osmo-bts Gerrit-Branch: master Gerrit-Change-Id: I595b31071a071bfa5666931d99e24e9b56877a6f Gerrit-Change-Number: 42151 Gerrit-PatchSet: 1 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: osmith <osmith(a)sysmocom.de> Gerrit-Attention: laforge <laforge(a)osmocom.org> Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de> Gerrit-Comment-Date: Thu, 19 Feb 2026 13:12:27 +0000 Gerrit-HasComments: Yes Gerrit-Has-Labels: No Comment-In-Reply-To: fixeria <vyanitskiy(a)sysmocom.de>
1
0
0
0
[S] Change in osmo-cbc[master]: Bump version: 0.5.2.4-2463 → 0.5.3
by pespin
19 Feb '26
19 Feb '26
pespin has submitted this change. (
https://gerrit.osmocom.org/c/osmo-cbc/+/42149?usp=email
) Change subject: Bump version: 0.5.2.4-2463 → 0.5.3 ...................................................................... Bump version: 0.5.2.4-2463 → 0.5.3 Change-Id: I36a3c6219bbd4f7dc13b5d5e40687d3f61aa02d5 --- M debian/changelog 1 file changed, 10 insertions(+), 0 deletions(-) Approvals: Jenkins Builder: Verified fixeria: Looks good to me, but someone else must approve osmith: Looks good to me, approved diff --git a/debian/changelog b/debian/changelog index 1384f9c..80ba61c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +osmo-cbc (0.5.3) unstable; urgency=medium + + [ Matan Perelman ] + * rest_api: Fix encoded payload length check + * Fix typos + * sbcap: Remove duplicated cli connection destroy + * smscb_peer_fsm: Replace printf with debug log + + -- Pau Espin Pedrol <pespin(a)sysmocom.de> Thu, 19 Feb 2026 13:11:39 +0100 + osmo-cbc (0.5.2) unstable; urgency=medium [ Pau Espin Pedrol ] -- To view, visit
https://gerrit.osmocom.org/c/osmo-cbc/+/42149?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged Gerrit-Project: osmo-cbc Gerrit-Branch: master Gerrit-Change-Id: I36a3c6219bbd4f7dc13b5d5e40687d3f61aa02d5 Gerrit-Change-Number: 42149 Gerrit-PatchSet: 1 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: osmith <osmith(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
1
0
0
0
[XS] Change in osmo-hnbgw[pespin/release-base]: Bump version: 1.8.0.3-9533 → 1.8.1
by pespin
19 Feb '26
19 Feb '26
pespin has submitted this change. (
https://gerrit.osmocom.org/c/osmo-hnbgw/+/42150?usp=email
) Change subject: Bump version: 1.8.0.3-9533 → 1.8.1 ...................................................................... Bump version: 1.8.0.3-9533 → 1.8.1 Change-Id: I44a6d0216f2a8ea4a536374c99cfedfbec75eabf --- M debian/changelog 1 file changed, 7 insertions(+), 0 deletions(-) Approvals: Jenkins Builder: Verified fixeria: Looks good to me, but someone else must approve osmith: Looks good to me, approved diff --git a/debian/changelog b/debian/changelog index 45f75a8..2b0c271 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +osmo-hnbgw (1.8.1) unstable; urgency=medium + + [ Vadim Yanitskiy ] + * nft_kpi: add udp/2152 filtering rules separately + + -- Pau Espin Pedrol <pespin(a)sysmocom.de> Thu, 19 Feb 2026 13:15:14 +0100 + osmo-hnbgw (1.8.0) unstable; urgency=medium [ Pau Espin Pedrol ] -- To view, visit
https://gerrit.osmocom.org/c/osmo-hnbgw/+/42150?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged Gerrit-Project: osmo-hnbgw Gerrit-Branch: pespin/release-base Gerrit-Change-Id: I44a6d0216f2a8ea4a536374c99cfedfbec75eabf Gerrit-Change-Number: 42150 Gerrit-PatchSet: 1 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: osmith <osmith(a)sysmocom.de> Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
1
0
0
0
← Newer
1
...
52
53
54
55
56
57
58
...
150
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
Results per page:
10
25
50
100
200